search for: sysbackup

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

2005 Apr 25
0
[Bug 2647] New: --exclude options work from commandline but not in script
...cd to the destinateion directory (in this case: /mnt/backup) and rsync the source directory (in this case: /) to the destination directory. Here's the command that gets run: /usr/bin/rsync -v --progress --delete --stats --exclude='/proc/' --exclude='/sys/' --exclude='/mnt/sysbackup/' -aS / . I want to exclude the /sys, /proc, and /mnt/sysbackup directories and *everything* underneath them from being backed up to the /mnt/sysbackup directory. The kicker is that if I run that command manually like so: ( cd /mnt/sysbackup; /usr/bin/rsync -v --progress --delete --stats --e...
2005 May 13
0
weird characters in files created by gnome login on samba share
.../.gconf/desktop/gnome/peripherals/%gconf.xml ./.gconf/desktop/gnome/peripherals/keyboard ./.gconf/desktop/gnome/peripherals/keyboard/%gconf.xml ./.gconf/desktop/gnome/peripherals/keyboard/kbd ./.gconf/desktop/gnome/peripherals/keyboard/kbd/%gconf.xml牴 ./.gconf/desktop/gnome/peripherals/keyboard/kbd.sysbackup ./.gconf/desktop/gnome/peripherals/keyboard/kbd.sysbackup/%gconf.xml㜷 ./.gconfd/saved_state ./.gnome ./.gnome2 ./.gnome2/accels ./.gnome2/.gnome-smproxy-k7JxO2 ./.gnome2/keyrings ./.gnome2/nautilus-scripts ./.gnome2/panel2.d ./.gnome2/panel2.d/default ./.gnome2/panel2.d/default/launchers ./.gnome2/...
2005 Apr 26
5
[Bug 2647] --exclude options work from commandline but not in script
https://bugzilla.samba.org/show_bug.cgi?id=2647 ------- Additional Comments From vanes002@umn.edu 2005-04-25 18:50 ------- A possible explanation is if the single-quotes are being retained in the --exclude values instead of being removed by whatever shell you are using for scripting. So rsync tries to exclude '/proc/' instead of /proc/ In your case, the quotes aren't even