Install Obnam on Ubuntu 15.04 and CentOS 7 – A simple, Secure Backup Utility

Obnam Featured

Obnam is a free, open source backup utility. It is an easy to installĀ and secure application which is used to backup your system and sync the backed up data to remove computer. You can save your critical backup to your local hard disk or can move it to any remote computer for the sake of better security. It is a lightweight utility and runs extremely fast. You donā€™t need to worry about incremental or full backup copies of your data, this tool generates snapshots of your data and every snapshot contains your complete data. It provides data de-duplication and encrypted backup features.

Installing Obnam on Ubuntu 15.04

Letā€™s see how we can install it on Ubuntu Linux 15.04 operating system. First of all launch your system terminal and run following command to add PPA for Obnam to your APT manager.

 Ā sudo apt-add-repository ppa:chris-bigballofwax/obnam-ppa

Once PPA has been added, run following command to update your package manager.

 sudo apt-get updateĀ 

Run following command to install obnam.

 sudo apt-get install obnamĀ 

Obname installation

Congratulations, obnam has been installed successfully now. Run following command to see manual for obnam.

 obnam manĀ 

Obname Manual

Installing obnam on Centos 7

In order to install Obnam on Centos operating system, launch your system terminal and run following command to install Epel repositories.

 yum install epel-releaseĀ 

Once done, run following command to install Obnam.

 yum install obnam fuse python-fuseĀ 

Useful Obnam Commands

Here are some of the useful Obnam commands.Ā Run following command to backup your data using obnam.

 obnam backup -r DestinationDirectory Ā LocalDirectoryĀ 

DestinationDirectory Ā is the directory to backup your data to, and LocalDirectory is the directory you want to backup. For example, to backup your document folder to /home partition, command should be:

 Ā obnam backup -r /home/Documents ~/DocumentsĀ 

In order to remotely store your backup data, command syntax should be (replace your remote computer login details in the command and the backup directory path):

 obnam -r sftp://username@remotecomputer/~/my-backupĀ 

You can find more details about different commands on Obnam manual.

Conclusion

Obnam is a simple, yet powerful tool. It is lightweight utilityĀ and does not contain any graphical user interface. Everything is done via command line and is super fast. It comes with advanced push and pull features too which makes retrieving and pushing data simpler.