search for: linkdir

Displaying 3 results from an estimated 3 matches for "linkdir".

Did you mean: link_dir
2009 Aug 11
2
I don't get --link-dest, at all
Hourly I have an rsync job backup /home to /home/backup. I have 24 directories (one for each hour): home.0 ... home.23 Here is the script I am running via cron: #! /usr/local/bin/bash dest=`date +%k | sed 's/ //g'` linkdir=`date -v-1H +%k | sed 's/ //g'` chflags -R noschg /home/backup rm -rf /home/backup/home.$dest rsync -ahHP --numeric-ids --delete --stats --link-dest=../ home."$linkdir"\ --exclude=/backup/* /home/ /home/backup/home."$dest"/ > /var/ rsync.log sleep 2 chflags -...
2008 Jan 09
2
internal abbrev error! ?
...bytes received so far) [sender] rsync error: error in rsync protocol data stream (code 12) at io.c(600) [sender=3.0.0pre7] Can someone explain what an internal abbrev error is? The rsync is to an attached firewire disk using: rsync --acls --xattrs --fake-super -a -v -exclude EXCLUDE --link-dest=LINKDIR SRCDIR DESTDIR Thanks in advance. -------------- next part -------------- HTML attachment scrubbed and removed
2010 Feb 18
1
rsync: stat "/path/to/dest/file" failed: No such file or directory (2)
Well, the title says it all.. I tried to research on this subject, but didn't find anything conclusive to me. Can somebody explain that error? If the file on destination isnt there, why not just copy it from source, why an error? I did a backup with rsync -aH --linkdest="/path/to/linkdir" /path/to/original /path/to/backup... basically rsyncing into an empty hierarchy. No errors here. Now, the errors come when i try to recover, after replacing the original harddrive with an older disk backup. The command is rsync -aH --delete /path/to/backup/ /path/to/original/ this is when i...