Contents |
Install backup-manager from your distro repository
sudo apt-get install backup-manager
If you want a cutting-edge version on Ubuntu Karmic, you can use benmur's Ubuntu PPA to grab his Github snapshot releases.
Since Fedora 9, you can install Backup Manager from distro repository :
yum install backup-manager
To enable the automation of backup on a daily task, you can go through a personnal cron or simply activate that already present in the package (/etc/backup-manager.conf):
# RPM-specific : Enabled daily cron export BM_DAILY_CRON="true"
Install backup-manager from the EPEL repository (How to use EPEL)
yum install backup-manager
To enable the automation of backup on a daily task, you can go through a personnal cron or simply activate that already present in the package (/etc/backup-manager.conf):
# RPM-specific : Enabled daily cron export BM_DAILY_CRON="true"
Dependencies: If you want to enable the localisation, you need gettext. Perl is needed for FTP and SSH uploads. Everything else is written in Bash.
Download the latest stable or development version from the Backup Manager website & untar in a directory
~/backup-manager $ ~/backup-manager $ su ~/backup-manager # make install ~/backup-manager # cp /usr/share/backup-manager/backup-manager.conf.tpl /etc/backup-manager.conf ~/backup-manager #
Edit configuration file
sudo gedit /etc/backup-manager.conf
for info on configuration option please read the documentation
Slackware users might like to change the default install locations. The default Makefile installs into the /usr tree, whereas the Slackware way is to install local builds into the /usr/local tree. You could use DESTDIR with make to install into a temporary directory, then build a package and install it, or you could edit the Makefile. For a simple set of source files like Backup-Manager's, I choose to edit the Makefile and install locally. It's very simple.
Copy the Makefile so you have a backup, then edit it. With a few exceptions, you can simply search-replace all instances of /usr with /usr/local.
Just note that the exceptions below are minor and not to be sweated; I list them for completeness. The exceptions are:
You can grab the very last development version of Backup Manager from our Github repository.
First of all, you need Git to be installed on your system. On Debian/Ubuntu systems:
$ sudo apt-get install git-core
Then, you can clone the repository:
$ git clone git://github.com/sukria/Backup-Manager.git
Next times you want to update your clone, do the following:
$ cd Backup-Manager $ git pull git://github.com/sukria/Backup-Manager.git master
See git documentation for more details.
To actually install Backup Manager, just do as explained in the "Install from tar archive section".