Don't miss

Incremental Backup with TAR


We often use TAR to backup files to tape to make full backup or using ctime or atime for creating new file names. But while your files are getting larger, let's say apache, logs or any file that modifies from time to time you need to have incremental backups. Incremental backups let's you backup only the files/folder that...

Check The Exact Capacity of Your Database


If you want to know the exact capacity of your database. Check this! Image from: findicons.com 1. SQL script Sum up the data_length + index_length is equal to the total table size. data_length – store the real data. index_length – store the table index. Here’s the SQL script to list out the entire databases size SELECT table_schema "Data...

Useful Uses of YUM


This link gives you techniques in using YUM. http://www.tecmint.com/20-linux-yum-yellowdog-updater-modified-commands-for-package-mangement/ What is YUM? YUM (Yellowdog Updater Modified) is an open source command-line as well as graphical based package management tool for RPM (RedHat Package Manager) based Linux systems. It allows users and system administrator to easily install, update, remove or search software packages on a systems. It was developed and released by Seth...

How To Display Date And Time In "Oct 14, 2013 14:22:59" Format?


How to display date and time format like "Oct 14, 2013 14:21:59". date +"%b %d, %Y %H:%M:%S" This is useful in making a time stamp of your logs. ...

Helpful Administration Linx


Yolinux http://www.yolinux.com/TUTORIALS/ This is a very good guide for administering your linux servers, also there are tutorials and other links possible for downloads and other related guides. Adding Users and After http://serverfault.com/questions/63764/create-home-directories-after-create-users You will need to create the users directory manually. This requires three steps: Create directory in compliance to /etc/passwd, usually there will be already a /home/login entry....