Projects tagged ‘rsync’ and ‘shell’


[7 total ]

13 Users
 

rsnapshot is a filesystem snapshot utility for making backups of local and remote systems. Using rsync and hard links, it is possible to keep multiple, full backups instantly available. The disk ... [More] space required is just a little more than the space of one full backup, plus incrementals. Depending on your configuration, it is quite possible to set up in just a few minutes. Files can be restored by the users who own them, without the root user getting involved. There are no tapes to change, so once it's set up, you may never need to think about it again. rsnapshot is written entirely in Perl. It should work on any reasonably modern UNIX compatible OS, including: Debian, Redhat, Fedora, SuSE, Gentoo, Slackware, FreeBSD, OpenBSD, NetBSD, Solaris, Mac OS X, and even IRIX. [Less]
Created about 1 year ago.

2 Users
   

Eloy is a comand line backup system. You simply define the directories to backup and Eloy does partial backups of all changes. You can easily list all changes and restore older versions of files and directories.
Created about 1 year ago.

1 Users
   

pu.sh is a simple POSIX shell script which deploys a nice versioned backup solution based on rsync's hardlinking capability, which creates many snapshots in local or remote hosts (with SSH) without data redundancy.
Created about 1 year ago.

0 Users

A backup program for the faridayix robot operating system.
Created 6 months ago.

0 Users

A really, really simple backup scheme for vmware servers using rsync. Part of Telenor´s iLabs project. See the BackupScriptSpec page for details. This project has is running in our lab production environment now.
Created about 1 year ago.

0 Users

Backup system that try to mimic and close to the Apple OSX Time Machine database. Actually use Bash and rsync to build a clone of the source path to backup in the term of: Backups.backupdb/ hierarchy ... [More] as provided into Time Machine. In the future should be relative easy port or migrate from GNU/ ioBackToTheFuture backups to and from OSX Time Machine backups. Works for generic desktop users with simplicity. Type: ./ioBackToTheFuture0.1 /PATH/TO/BACKUP /BACKUP/DISK And you're done! [Less]
Created 12 months ago.

0 Users

pu.sh is a simple POSIX shell script which deploys a nice versioned backup solution based on rsync's hardlinking capability, which creates many snapshots in local or remote hosts (with SSH) without ... [More] data redundancy. Install instructionsIt's simple: # svn export http://pu-sh.googlecode.com/svn/trunk/pu.sh /usr/local/bin/pu.shIf you prefer wget, do: # wget http://pu-sh.googlecode.com/svn/trunk/pu.sh -O /usr/local/bin/pu.sh # chmod +x /usr/local/bin/pu.shReady. RunningTo uses pu.sh you need these softwares installed in your computer: rsync; OpenSSH client (ssh), only if you need push backups on a remote host. Synopsys: $ pu.sh [-q] [-v]... [-e FILE] [-l FILE] [--] SRC [SRC]... [[USER@]HOST:]DESTExamples usagePush some dirs into /var/backups: $ pu.sh /home /usr/local/bin /var/backupsPush / with a exclude list into /backups in example.net: # pu.sh -e /etc/pu-sh/exclude.list / root@example.net:/backups/Push /var/mail to remote host and writes a log in /var/log/pu-sh.log # pu.sh -l /var/log/pu-sh.log /var/mail root@192.168.0.1:/var/cache/pu-shFor more instructions, run pu.sh -h. Simple deployPut the script below for run with cron: #!/bin/sh SOURCES="/etc /srv /opt /home /root /var/lib /var/www /usr/local /var/log /var/mail /var/spool" DEST="user@example.net:/backups/`hostname -f`" cat . See AUTHORS file for a complete authors list of this application. [Less]
Created 12 months ago.