Because of my web host, I can't use FTP. There's a file I'd like to download. How can I do this through ssh?
|
feedback
|
migrated from stackoverflow.com Mar 17 '10 at 21:46
This question came from our site for professional and enthusiast programmers.
|
If you're on linux, simply use scp from the command line like this:
If you're on windows, I recommend FileZilla. It's a good free ftp client that supports file transfer over ssh (sftp). | |||
|
feedback
|
|
If you have KDE installed (most probable if you are on a Unix-like system), you can use the | |||
|
feedback
|
|
As you are most familiar with ftp, you should use sFTP as previously mentioned. You can use an FTP client, such as FileZilla and apart from creating the connection, everything will then work the same as if you were using ftp. It is easy to set up and you don't need to learn anything new. On the other hand
is the quickest way to transfer one file. Another alternative if you are running Linux is that you can map the ssh server as if it were a local drive using sshfs from the command line or on the GNOME desktop: Places > Connect to server... and choose SSH from the drop down, enter your hostname username and password and you can drag and drop files in a file manager. | |||
|
feedback
|