Use rsync and SSHFS to create incremental backups!

Good system administrator always keeps their critical data backed up, their are various ways you can backup your data, but some times it can be a hectic job, how ever we can use rsync and sshfs to create incremental backups (and automate the backup using cron jobs). What is SSHFS? SSHFS can mount a remote machine on your backup server…

How to install/un-install packages using yum and apt-get in Linux

Installing packages on linux was a biggest mystery to me when I started learning unix/linux, so I thought to write a complete guide on how to install/un-install packages using yum and apt-get in Linux. In Linux softwares or applications that execute on machine is called packages.  We will go through: RPM (Red hat package manager). apt-get (Debian based package manager)…

Password less SSH Authentication using public/private keys

SSH gives you remote access to a Linux machine, just like you are sitting physically with the keyboard attached to it. One of the main reasons why people use ssh is because its secure, all communication is encrypted and packets can not be sniffed during connection. How ever if some one knows your SSH password then your server/personal computer is…