search for: scoug

Displaying 20 results from an estimated 34 matches for "scoug".

Did you mean: sclug
2012 Jul 27
7
cannot rsync when source directory lacks write permission
I seem to be running into a problem where I am trying to rsync from a source directory that lacks write permissions (i.e. r-xr-xr-x). Presumably this is because rsync creates the directory on the destination, then sets the permissions to match the source and then tries to sync the contents of the directory, which it cannot of course lacking write permission in the directory. Is there a way to
2011 Sep 16
2
Cannot get the syntax of --include-from right
Here is part of my backup script: nice -n 15 rsync -avl --exclude=".*" \ --include-from="/home/bob/backup_includes" \ "$fromdir" "$todir" Here is the content of /home/bob/backup_includes /home/bob/.vimrc /home/bob/.gitconfig My problem is that neither the .vimrc nor .gitconfig are copied to the backup directory. I have read the man page about
2012 Apr 04
2
Using rsync to synchronize
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hello, I have been using rsync to backup our primary data stores. It works fine. Here are the options I use for doing that: rsync --recursive --links --times --dirs --stats --delete \ --itemize-changes --quiet --exclude-from=exclude-filename \ /data-store1/ /data-store2/ Recently I have had the need to actually synchronize the files between
2016 Jun 09
4
rsync keeps writing files over
...mps as rsync interprets them. > >BTW, what version of rsync are you running? It might matter. > >Steven > >-- >---------------------------------------------------------------------- >"Steven Levine" <steve53 at earthlink.net> Warp/DIY/BlueLion etc. >www.scoug.com www.arcanoae.com www.warpcave.com >---------------------------------------------------------------------- > > >-- >Please use reply-all for most replies to avoid omitting the mailing list. >To unsubscribe or change options: >https://lists.samba.org/mailman/listinfo/rsync &...
2010 Oct 22
3
include-from or files-from
Hello List, i have got a large File-List which looks like this: ...snip... 165/165950*.jpg 166/166072*.jpg ...snap.... Now i would like to transfer only those file from that list. The rsync command: rsync -avz -F --files-from=/tmp/synclist-small.txt /mnt/ /data/ does not seem to work due to that wildcard. The command: rsync -avz -F --include-from=/tmp/synclist-small.txt /mnt/ /data/ syncs
2009 Jul 17
2
Rsnapshot/rsync buffer overflow
I have been using rsnapshot on OS X for a bit now to backup my debian home server to my external HD but have now started getting this error. Shiny:rsync-3.0.6 kurt$ sudo rsnapshot sync /usr/bin/rsync -a --delete --numeric-ids --relative --delete-excluded \ --exclude=mtab --exclude=core --rsh="/usr/bin/ssh -i \ /Users/kurt/.ssh/id_rsa" root at home.thisisnotajoke.com:/home \
2010 Dec 10
4
Very surprising behaviour with --files-from
$ wc -l /tmp/list 1000 /tmp/list $ rsync -i -aPv --ignore-existing --files-from=/tmp/list /backups/ ut00-s00010:/backups/ building file list ... 3937 files to consider I am totally baffled. That's not such a big deal, but the list I'm *actually* using has twenty *million* files in it. At a couple hundred files a second, if it's going to check 4 times the number of files, that's
2010 Nov 20
4
How to sync an exact list of files, Including deletes!?
Hello, I'm author of Lsyncd - the live syncing deamon - http://code.google.com/p/lsyncd/ - a daemon that uses Linux` inotify to watch for filesystem changes - aggregates them for a few seconds and then periodically calls rsync to transfer the changes to target(s). Version 1 was simply aware of directories only, and it called rsync once with --delete -d for every directory in which anything
2016 Jun 23
3
Operation not supported (95)
On Thu, Jun 23, 2016 at 04:27:10PM -0400, Kevin Korb wrote: > If the filesystem doesn't support ACLs then don't use -A. > I did some search about this error before asking this question, and in other case unsupported ACLs were indeed the cause. But btrfs supports ACLs: [root at kw al]# getfacl /mnt/backup/rootdir/var/log/journal/remote getfacl: Removing leading '/' from
2015 Apr 18
2
On the case `an identical item replaces the dots with spaces' for `--itemize-changes'.
Hi all, The `--itemize-changes' has the following notes within the manual: The other letters in the string above are the actual letters that will be output if the associated attribute for the item is being updated or a "." for no change. Three exceptions to this are: (1) a newly created item replaces each letter with a "+",
2016 Mar 31
0
rsync with overlay tree
...imes, which may result in faster overall throughput. FWIW, I think you will find the -hi output more useful than the -v output. Steven -- ---------------------------------------------------------------------- "Steven Levine" <steve53 at earthlink.net> Warp/DIY/BlueLion etc. www.scoug.com www.arcanoae.com www.warpcave.com ----------------------------------------------------------------------
2016 Jun 02
0
rsync keeps writing files over
...le. This will list the file timestamps as rsync interprets them. BTW, what version of rsync are you running? It might matter. Steven -- ---------------------------------------------------------------------- "Steven Levine" <steve53 at earthlink.net> Warp/DIY/BlueLion etc. www.scoug.com www.arcanoae.com www.warpcave.com ----------------------------------------------------------------------
2009 Aug 02
1
log information .d..t... etc
Hi there all, I sincerely hope I'm posting this message in the correct space? I'm fairly new to rsync (And Linux for that matter) BUT after exploring rsync quite exstensively I can't seem to find the information I'm looking for. In short I need to know what the logging displayed relates to? For example: 2009/08/02 11:38:58 [5596] .d..t...... music00/ 2009/08/02 11:39:01 [5595]
2010 May 01
1
the meaning of "receiving file list"
Moin, where can I find an explanation for all these codes in the verbose output: cd..t...... root/ >f..t...... root/.Xauthority >f.st...... root/Dokumente und Einstellungen/test2.txt >f+++++++++ test.txt cd+++++++++ global/foo and so on. Thanks -- |Michael Renner E-mail: michael.renner at gmx.de | |D-81541 Munich Germany ICQ: #112280325 | |Germany
2010 Aug 16
1
Does rsync use encription also for local tranfers?
Hy everybody, I'm using rsync to backup/synchronize folders to/from USB connected external hard drives. But I can't find an answer to a doubt. Does rsync use encription also for local tranfers? For "local transfer" I mean a transfer that doesn't go through a network like folders synchronization with external hard drives. I'm asking because the speed of local transfers
2010 Sep 09
2
is a "- *.ext" filter overriden by a later "+ *.ext"
Hi, In our backup script we sometimes would like to override the common (i.e: static) excludes filter list. For example we exclude "- *.ext" for all backups but would like to include "+ *.ext" only for 'local' backups. Are such entries supposed to cancel each other? How can one override an earlier exclude in a filter list? Thanks,
2010 Oct 23
2
How to escape "()" characters in commad
I have the following command: /usr/local/bin/rsync -avv 'Jeffrey?s iPhone (Root)'/ 'Macintosh HD'/Users/jeffrey/Downloads/iphone_backup Unfortunately, it's barking when it hits the "(". -bash: syntax error near unexpected token `(' How can I escape this? Thanks. -- View this message in context:
2010 Oct 26
1
rsync: failed to set permissions on "<filename>": Function not implemented (38)
Hi there, I am trying to figure out how I can get my rsync client and server to coexist better. I am running into the following error: rsync: failed to set permissions on "<filename>": Function not implemented (38) and the command line is /usr/bin/rsync --recursive --compress --human-readable --progress --update --perms -avz '/Applications' -e 'ssh -p 22
2011 Jan 18
3
Implicit --itemize
Hi
2011 Jul 20
1
FATAL I/O ERROR: dying...
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hello, Local rsync version 3.0.7 protocol version 30. The remote rsync version is 3.0.5, I think. opensuse v11.3 linux 2.6.34.8-0.2-desktop x86_64 The nightly rsync run is getting this error: 2011/07/20 02:04:29 [17840] FATAL I/O ERROR: dying to avoid a \ --delete-during issue with a pre-3.0.7 receiver The options are: - --archive