From the category archives:

Sys Admin

How To Flush Sendmail Queue In Linux

by lifeLinux on May 16, 2011

Check pending mail To check how many pending mail, type the following command # mailq

{ 0 comments }

How to Manage Postfix Mailbox Size

by lifeLinux on May 15, 2011

How do you managing the mailbox size for users configured with the Postfix mail server ?. And how to avoid “error writing message: File too large” ?

{ 0 comments }

10 lsof Command Examples

by lifeLinux on May 14, 2011

The lsof command or “list open files” command in Linux is a powerful tool. In Linux and Unix everything behind the scenes are just files. This includes IP sockets, pipes, unix sockets, directories, devices, even inodes are just files. This means that lsof can actually tell you a lot of information of what is going […]

{ 0 comments }

How To Add/Create Swap File

by lifeLinux on May 14, 2011

If you need additional swap space to improve your system performance. You have two different ways: add/upgrade a swap partition or create a swap file. But changing the size or create a new swap partition is not easy, the best solution is to create a new swap file. This articles help you add/create swap file […]

{ 0 comments }

Find Large Files In Linux

by lifeLinux on May 13, 2011

Find files larger than a certain size This example finds all the files under /root directory which are larger than 50k [root@lifelinux ~]# find /root -size +50k Sample output /root/ioncube/ioncube_loader_lin_5.3_ts.so /root/ioncube/ioncube_loader_lin_4.1.so /root/ioncube/ioncube_loader_lin_5.1.so /root/ioncube/ioncube_loader_lin_4.2.so …

{ 0 comments }

How To Install Ksplice on CentOS / RedHat

by lifeLinux on May 12, 2011

You can apply kernel updates using “yum” command or “apt-get” command line options. After each upgrade you need to reboot the server. How to skip reboot step and apply hotfixes to kernel without rebooting the server ? What is Ksplice Uptrack? Ksplice Uptrack is a subscription service that lets you apply 100% of the important […]

{ 0 comments }