linux

How to Enable touchpad of laptop in Linux/Fedora

Enable touchpad of laptop in Linux/Fedora

Zimbra Desktop- The next-generation email and collaboration client!

The free Zimbra Desktop client allows you to meld the online and offline worlds – storing and synching your email, calendar, contacts, files and documents in the cloud, yet having them locally accessible when on the road. Zimbra Desktop aggregates information across accounts (Zimbra, Yahoo! Mail, Gmail, Hotmail, etc.) and social networks (Facebook, Digg, Twitter, [...]

XAMPP- Easy to install Apache Distribution!

XAMPP is an easy to install Apache distribution containing MySQL, PHP and Perl. XAMPP is really very easy to install and to use – just download, extract and start. At the moment there are four XAMPP distributions: 1) XAMPP for Linux The distribution for Linux systems (tested for SuSE, RedHat, Mandrake and Debian) contains: Apache, [...]

Deluge Torrent – A full-featured BitTorrent client!

Deluge is a full-featured BitTorrent client for Linux, OS X, Unix and Windows. It uses  libtorrent in it’s backend and features multiple user-interfaces including: GTK+, web and console. It has been designed using the client server model with a daemon process that handles all the bittorrentactivity. The Deluge daemon is able to run on headless machines with the user-interfaces [...]

SMPlayer – The universal media player solution for Windows and Linux!

SMPlayer uses the award-winning MPlayer as engine, so it’s able to play the most known audio & video formats without any need of external codecs: avi, mkv, ogm, mpeg, vob, 3gp, asf, mov, wmv, mp3, ogg… You can also play DVD discs and Internet streams. Special care have been taken with subtitles. It supports srt, [...]

W3Edit – Free HTML, CSS, PHP Editor for Windows, Linux, Mac OS

W3Edit is a cross-platform editor for HTML, CSS, PHP. It displays the source code colored (syntax highlighting) with easy to use HTML & CSS helpers, HTML DocType templates and clean and simple tabbed document interface. Main Features: Syntax highlighting (HTML, CSS, PHP) Easy to use HTML & CSS helpers HTML DocType templates Handy RGB to [...]

Hack Proofing Linux: A Guide to Open Source Security

From the authors of the bestselling E-Mail Virus Protection Handbook! The Linux operating system continues to gain market share based largely on its reputation as being the most secure operating system available. The challenge faced by system administrators installing Linux is that it is secure only if installed and configured properly, constantly and meticulously updated, [...]

Microsoft to Drop Linux, Unix Versions of Enterprise Search

Microsoft will no longer offer Linux or Unix versions of its enterprise search products after a wave of releases set to ship in the first half of this year, the company announced in an official blog post Thursday. After Microsoft bought Fast Search & Transfer in 2008, it said it would continue offering and updating standalone versions of [...]

How to Install and Configure APC for PHP on Linux

APC is the Alternative PHP Cache, which is a free, open, and robust framework for caching and optimizing PHP intermediate code. What this means is that APC reads your PHP files, parses them into a more efficient binary format and then caches them in memory so that each request for your PHP files and PHP [...]

How to grep from a GZ file on Linux System

There are few ways by which you can grep from GZ files on Linux .The best way is to use the zgrep command as follows zgrep -c “post-classifieds-ads HTTP/1.1″ access_log.11.gz In the above example i used the grep command on access_log.gz file to get the count of post-classifieds-ads in that file.

How to check your dns with nslookup command

Nslookup command is used to test the Dns , Queries a name server for a host or domain lookup.NSLOOKUP was originally written on a Unix system, and so is easily run on most Linux variants by simply typing “nslookup” on the command line. On Windows systems you need to search your computer for the program [...]

How to restart Memcached under Linux System

Its is very easy to restart memcached under Linux. You can just grep the memcached process and kill the process id just shown below [root@pwas2 ~]# ps -ax | grep memcached Warning: bad syntax, perhaps a bogus ‘-’? See /usr/share/doc/procps-3.2.3/FAQ 6478 ? Ss 1480:39 /usr/bin/memcached -d -m 1024 -u root 17601 pts/1 S+ 0:00 grep [...]

How to set Date in Linux system

you can set date in linux system by using the date commad as follows date -s “15:41:00″ To display current date and time, enter: date To set the date and time, enter: date 0217142590 For a system using CST as its time zone, this sets the date and time to Sat Feb 17 14:25:00 CST [...]

How to verify that Java is running under Linux System

To verify java is running under linux box , run the following command ps -ax | grep java Warning: bad syntax, perhaps a bogus ‘-’? See /usr/share/doc/procps-3.2.3/FAQ 7534 ? Sl 336313:19 java -jar start.jar 7536 ? Sl 2:50 java -jar HServer.jar 19993 pts/2 S+ 0:00 grep java

How to view the first few lines of a big file in Linux

How to view the first few lines of a big file in Linux To view the first few line use the head or tail command, If you want to view the first 100 lines of a file then just type the following command in the terminal head -100 dump_file021009 For the last 100 lines you [...]