Comments on: Automatically rsync from OS X to linux /2013/12/20/automatically-rsync-from-os-x-to-linux A collection of note-to-self's Sun, 24 Mar 2019 23:04:45 +0000 hourly 1 https://wordpress.org/?v=5.1.1 By: Andrey /2013/12/20/automatically-rsync-from-os-x-to-linux/comment-page-1#comment-236431 Wed, 10 Sep 2014 14:20:20 +0000 http://blog.dest-unreach.be/?p=2694#comment-236431 Currently I’m using rsync –iconv like this:

Copying files from Linux server to OS X machine

You should execute this command from Linux server (it won’t work from OS X):

rsync -a –delete –iconv=UTF-8,UTF-8-MAC /home/username/path/on/server/ ‘username@your.ip.address.here:/Users/username/path/on/machine/’

Copying files from OS X machine to Linux server

You should execute this command from machine:

rsync -a –delete –iconv=UTF-8-MAC,UTF-8 /Users/username/path/on/machine/ ‘username@se

]]>
By: Mike /2013/12/20/automatically-rsync-from-os-x-to-linux/comment-page-1#comment-216967 Sat, 11 Jan 2014 19:36:16 +0000 http://blog.dest-unreach.be/?p=2694#comment-216967 Very good article on rsync. Here is one from around 1999 but still the very best rsync tutorial I’ve ever read. Explains it very well IMO: http://everythinglinux.org/rsync/

]]>