Linux Tidbits
Jump to navigation
Jump to search
rsync with ssh generation
ssh-keygen -t rsa
ssh-copy-id -i ~/.ssh/id_rsa.pub someothercomputer
rsync -ave ssh /localfiles/ remotebox:/localfiles
(note: add --delete to rsync for a proper mirror, or leave off for full backup)