Linux Tidbits: Difference between revisions

From ChipWiki
Jump to navigation Jump to search
No edit summary
(No difference)

Revision as of 21:42, 6 April 2009

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)