What is the best way to download files to local hard drive when logged in to another computer using ssh in bash. I'm aware of sftp, but it is not convienent, e.g. it lacks tab completion of directory names. I'm using Ubuntu 8.04.1 . I don't have a public IP and would not like to setup dynamic Dynamic DNS solution.
|
|
I'm also running Ubuntu 8.04.1, and if I type
I do indeed get tab completion (i.e. bash is sshing to my server and getting completion results from the filesystem there). Then
copies my .bashrc from my server to the current directory on my local machine. If you don't get this, try
|
||||
|
|
|
How about FISH? File transfer over Shell - You can use Midnight Commander in your console:
Then hit F9; Right (for the Right panel) -> Shell link Type in the ssh link of the remote host. At the prompt enter machine name specify:
The system will prompt for the password (or auto login if your SSH keys are setup for that) Now you can browse the remote filesystem, select and copy over (F5) as you wish. |
||
|
|
|
|
ssh-xfer is what you are looking for. Once you have it set up, you can type (from within the $ ssh-xfer foo.txt and foo.txt will magically show up on your local machine. |
||
|
|
|
|
I actually like to use the command line SCP client. :) I do not know how it does this, but my SCP on Ubuntu (from openssh-client 1:4.7p1-8ubuntu1.2) actually does tab-completion of remote directories and files on hosts where I usually auth via public key. |
||
|
|
|
|
As far as I know there is no simply scp-on-steroids that lets you autocomplete on remote folder-structures. If you just want to basically mount a remote folder, take a look at sshfs. Or just try mounting a remote directory with ssh://... within Nautilus. |
||
|
|
|
|
I don't know. I'd $ scp host:file locallocation |
||
|
|
