Posts Tagged ‘rsync’

May 23, 2012 0

using rsync to copy files

By in linux, rsync

rsync options to get rsync to report progress: –verbose –progress –stats if copying over network use compression and secure transfer: –compress –rsh=/usr/bin/ssh tell rsync to copy recursively: –recursive keep file timestampts: –times keep permissions: –perms copy symbolic links: –links instruct rsync to delete files on the remote location that isn’t present on the source: –delete […]

Tags:

March 22, 2012 0

rsync to copy home directory

By in linux

sudo rsync -ah –exclude-from=/home/thomas/rsyncExcludeFile /home/ /home2/ tailing / are important the /home/thomas/rsyncExcludeFile file is a file containing directories and files not to sync such as Music

Tags: