I want to use file transfer via SSH on some scripts. I've read it's possible to tar over ssh. Where should I start reading?
Tell me more
×
Server Fault is a question and answer site for
professional system and network administrators. It's 100% free, no registration required.
|
|
To do file transfer over ssh you can
|
|||||
|
|
O'Reilly has a book with it all - SSH, The Secure Shell: The Definitive Guide - if you Google for it, there are many references, places to buy it, and view it online. |
|||||
|
|
Im no expert, but I think http://en.wikipedia.org/wiki/Secure_copy is what you want. |
|||
|
|
|
For tar over ssh, you can use the fact the ssh forwards stdin and stdout. So you can do
and have the backup on the local machine. |
|||
|
|