search for: lptgod

Displaying 11 results from an estimated 11 matches for "lptgod".

Did you mean: rlptgod
2020 Sep 10
2
Copying TBs -> error -> work around
...home for writing I then get: "Read-only file system" So after unmounting and remounting /home I did: cd /home find /home/ -type d | sort > ./home_dirs_sorted.txt delete first line "/home/" of ./home_dirs_sorted.txt then: while read dir ; do echo $dir ; rsync -lptgod "$dir" /mntb5/"$dir" ; done < ./home_dirs_sorted.txt and: while read dir ; do echo $dir ; rsync -lptgoD "$dir"/\.[a-zA-Z0-9]* /mntb5/"$dir"/ ; done < ./home_dirs_sorted.txt and finally with no problems: rsync -av --exclude-from=/usr/local/bi...
2010 Mar 24
1
--delete question.
...ease advise on rsync usage. --delete doesn?t work without recursion(--recursion). The recursion is causing huge overheads for me. My directory trees are huge. Any suggestions through which I can cut overheads. It used to work well in rsync-v2.5.5 /opt/rsync-v2.5.5/bin/rsync --delete --checksum -lptgoD --rsync-path=/opt/rsync-v2.5.5/bin/rsync --hard-links --timeout=5184000 --exclude=.snapshot --stats user at host::abc/xyz/* /aaa/bb/cc (Works Well for this version) /opt/rsync-v3.0.7/bin/rsync --delete --checksum -lptgoD --rsync-path=/opt/SFI/rsync-v3.0.7/bin/rsync --hard-links --timeout=518400...
2007 Dec 03
4
RSYNC
If I try: rsync -lptgoD -e "ssh -i /root/.ssh/rsync-key" --verbose --exclude="/*.*" --exclude="*.xml" --include="+ */Tariff/" 192.168.1.1:/home/e-smith/files/ibays/frogs/files/dbs/ rsync lists the correct files, but if I add the destination like this: rsync -lptgoD -e "ssh -i...
2003 Jan 09
1
--exclude and --delete-exclude problem
Hi. I'm trying to accomplish the following ; 1) First, I did a rsync for a file, like this /usr/bin/rsync -lptgoD --delete --rsh=/usr/bin/ssh -R --delete-excluded -vv root@127.0.0.1:/usr/local/src/* /tmp/localhost/daily.0 If I did a ls -la to the destination dir (/tmp/localhost/daily.0/usr/local/src/README) I take ls -la /tmp/localhost/daily.0/usr/local/src/ total 60 drwxrwsr-x 2 root staff 4...
2020 Sep 11
2
Copying TBs -> error -> work around
...gt;> So after unmounting and remounting /home I did: >> >> ? cd /home >> ? find /home/ -type d | sort > ./home_dirs_sorted.txt >> >> delete first line "/home/" of ./home_dirs_sorted.txt then: >> >> ? while read dir ; do echo $dir ; rsync -lptgod "$dir" /mntb5/"$dir" ; >> done < ./home_dirs_sorted.txt >> >> and: >> >> ? while read dir ; do echo $dir ; rsync -lptgoD "$dir"/\.[a-zA-Z0-9]* >> /mntb5/"$dir"/ ; done < ./home_dirs_sorted.txt >> >> and...
2020 Sep 14
0
Copying TBs -> error -> work around
.../home I did: > > > > > > ? cd /home > > > ? find /home/ -type d | sort > ./home_dirs_sorted.txt > > > > > > delete first line "/home/" of ./home_dirs_sorted.txt then: > > > > > > ? while read dir ; do echo $dir ; rsync -lptgod "$dir" /mntb5/"$dir" ; > > > done < ./home_dirs_sorted.txt > > > > > > and: > > > > > > ? while read dir ; do echo $dir ; rsync -lptgoD "$dir"/\.[a-zA-Z0-9]* > > > /mntb5/"$dir"/ ; done < ./home_di...
2003 Jan 18
2
Latest release of --files-from patch
...e file list is created by whatever means you desire). It might help to visualize this new command: rsync -a --files-from=/some/list /source /dest as being roughly equivalent to this old command (note the lack of -r and the presence of -R -- it's not a mistake): cd /source rsync -lptgoD -R `cat /some/list` /dest With these exceptions: - Directories mentioned in the "list" file are created on the destination (without transferring their contents unless -r is specified). - Paths in the "list" are sanitized to ensure that they don't refer anywhere...
2004 Jul 16
0
create directory
Hello I'm trying to rsync some individual files, but it's not working: rsync -lptgoD /etc/named.conf /disk2/etc/ It works well if /disk2/etc/ dir exists, but if only /disk2/ dir exists, it won't create the etc/ dir and put the file inside it. Just gives an error: mkstemp /mnt/disk2/etc/..wl2ljs failed: No such file or directory rsync error: some files could not be transferred...
2003 Mar 23
2
Modified --files-from patch
...list is created by whatever means you desire). It might help to visualize this new command: rsync -a --files-from=/some/list /source remote:/dest as being roughly equivalent to this old command (note the lack of -r and the presence of -R -- it's not a mistake): cd /source rsync -lptgoD -R `cat /some/list` remote:/dest With these exceptions: - Directories mentioned in the "list" file are created on the destination (without transferring their contents unless -r is specified). - Paths in the "list" are sanitized to ensure that they don't refer a...
2016 Apr 01
0
weird output rsync version 3.1.1
Hi all, When running rsync with following parameters, I get some strange output for a lot of paths. This does not happen on every path, but I see it often: rsync --stats --numeric-ids -lptgoD --files-from=/tmp/zkrsync/tmpUaSGa2 -r /data/.snapshots/backup/ rsync://osd010.gigalith:5555/zkrs-data 5: 5: 5: 5: 5: 5: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 6...
2003 Oct 22
1
Feature Request - Recursive Rsync Parameter - Example Script
...args" ] then for arg in "$@" do echo "Arg #$index = $arg" done fi # Assign parameters to some variables. r_level=$1 rsync_options=$2 source_path_parm=$3 dest_path_parm=$4 rsync_no_r_options=`echo $rsync_options | sed -e "s/r//" | sed -e "s/a/lptgoD/"` # Let's support the rsync test mode. test_run=`echo $rsync_options | grep n` # We need to decide if the source is a remote host # Parse out the <source path> and if it is remote, capture the hostname if [ `echo $source_path_parm | grep ":"` ] then remote_source_h...