// post · 345
scp
I needed to copy about 150mb of files between two computers and the only access I had was SSH. So I used Secure Copy (SCP). The syntax is as follows:
scp -rp backup/ user@remote.computer.tld:backup/
This recursively copies the entire folder (in this case backup/) and preserves modification times (add -C for compression) to the remote computer remote.computer.tld with the user name: user
You can also get a windows client here
scp -rp backup/ user@remote.computer.tld:backup/
This recursively copies the entire folder (in this case backup/) and preserves modification times (add -C for compression) to the remote computer remote.computer.tld with the user name: user
You can also get a windows client here
// leave a comment
HTML allowed: <a href="" title="" rel=""></a> <b></b> <blockquote cite=""></blockquote> <em></em> <i></i> <strike></strike> <strong></strong> <li></li> <ol></ol> <ul></ul>
ie: <b>bold</b>
Your comment may need to be reviewed before it is published.
// comments