search for: raidbackup

Displaying 2 results from an estimated 2 matches for "raidbackup".

Did you mean: mailbackup
2002 Mar 13
1
Simplest script to backup many Linux servers
...nux machine. The backup machine is running Red Hat 7.2 with the latest rsync RPM version they recommend, rsync-2.4.6-10. Normally, I use dump/restore to backup all 30+ Linux machines here to tape. I'd rather use rsync to move everything or just the important files on each server to the mounted Raidbackup machine. My questions is, what is the best way to do this? or what would be the simplest script. I tried the following script; # Backup all partitions and files #!/bin/sh rsync -av * 192.168.10.10:/export3/mailworks.ksl.com/ but it seems to hang quite a bit as it generates the necessary list. I...
2010 Jun 24
0
rsync not syncing desktop folder
Hello! I found a strange problem while using rsync to backup my files. I use a script: ------------------ #!/bin/bash SOURCEDIR="/" TARGETDIR="root at DLINK-13F017:/mnt/HD_a2/administrator/RAIDBackup/" LOGFILE="--log-file=/home/administrator/.rsync/rsync_dns323.log" OPTIONS="-avz -e ssh --stats --progress --delete --delete-excluded" EXCLUDES="--exclude-from=/home/administrator/.rsync/exclude_dns323.txt" sudo rsync $OPTIONS $LOGFILE $EXCLUDES $SOURCEDIR $TARGE...