Backup: Difference between revisions
No edit summary |
No edit summary |
||
| Line 31: | Line 31: | ||
00 06 * * * absolute path of your script | 00 06 * * * absolute path of your script | ||
</pre> | </pre> | ||
====LuckyBackup - Graphical interface for Rcsinc==== | |||
For the description, let's make citation of the website: http://luckybackup.sourceforge.net/features.html | |||
"''luckyBackup is an application for data back-up and synchronization powered by the rsync tool.''" | |||
"''The main goal of luckyBackup, as its name states, is the creation of backups of your data.''" | |||
"''It is simple to use, fast (transfers over only changes made and not all data), safe (keeps your data safe by checking all declared directories before proceeding in any data manipulation ), reliable and fully customizable.''" | |||
LuckyBackup is distributed under the terms of the [http://www.gnu.org/copyleft/gpl.html GNU General Public License]. | |||
Latest revision as of 11:53, 18 May 2011
go back to Main Page, Computational Resources, Information & Help
Please, talk with your supervisor and Martín about performing backups, ..
How to make backup from a remote machine[edit]
Here a short outline on how to make automatic backup from a remote machine is given. Most of this can be found elsewhere on the Internet, but main ideas are given here for convenience.
- set up ssh to connect via public key authentication
- download and install keychain
- download and install rsync (if it's not already there)
- write a script like this:
#! /bin/bash source ~/.keychain/$HOSTNAME-sh rsync -avz --exclude-from=exclude-list $USER@kimik: /some/backup/folder
5. put the script in a cron job
Some comments[edit]
the exclude-list is a file that defines an exclusion pattern. For instance, if you do not want to backup core files and .chk files, you can define that pattern as this:
core* *.chk
If you for instance want to backup your files everyday at 6 am., you edit the crontab like this:
00 06 * * * absolute path of your script
LuckyBackup - Graphical interface for Rcsinc[edit]
For the description, let's make citation of the website: http://luckybackup.sourceforge.net/features.html
"luckyBackup is an application for data back-up and synchronization powered by the rsync tool."
"The main goal of luckyBackup, as its name states, is the creation of backups of your data."
"It is simple to use, fast (transfers over only changes made and not all data), safe (keeps your data safe by checking all declared directories before proceeding in any data manipulation ), reliable and fully customizable."
LuckyBackup is distributed under the terms of the GNU General Public License.