Download File From Ssh Session

SSH or Secure Socket Shell is a protocol that allows a secure way to access remote computer.SSH implementation comes with scp utility for remote file transfer that utilises SSH protocol. Other applications such as sftp and rsync can also make use of SSH to secure its network transaction. All these applications allow us to copy our local files to remote server and to copy files from remote.

Active3 years, 11 months ago

Download file to local pc from remote ssh. Ask Question Asked 9 years, 5 months ago. Active 7 years ago. Viewed 29k times 11. Because of my web host, I can't use FTP. How can I download a file from a SSH session (without using sftp) 2. Download file on existing SSH session. Ssh http proxy, but can't sudo in server. I do this a lot, so it'd be inefficient to do this every time I want to copy a file in the middle of a SSH session. I'm just looking for a way, while in a SSH terminal session, to hook back to my local computer and have it send up a file to the remote server without having to leave the current SSH session. – Naftuli Kay Nov 28 '11 at 22:21.

I know I can use sftp user@host ....

But what I want is to download a file from the existing session.

that is.

ssh user@host... do some work ...

The main problem I have is that said file is under root on the server so doing a sftp command is not that simple.

Der Hochstapler
70.1k51 gold badges239 silver badges292 bronze badges
jorge.vargasjorge.vargas

5 Answers

The way you describe it it sounds like your issue is that you cannot login as root via ssh (probably you used some sort of su or sudo to work as root).

  • If root can in principle log in via ssh, but you do not know the password, you can set up root's account to allow public-key authentication with your key.
  • If that is not possible copy that file to a folder accessible to the account you log in with (like your $HOME folder), possibly adjust permissions and copy as user with sftp or scp.
Benjamin BannierBenjamin Bannier
13.5k3 gold badges37 silver badges37 bronze badges
quack quixote
36.1k11 gold badges89 silver badges123 bronze badges
akidakid

Ssh Get Files

I don't know why it has to be the same session, but if you use ControlMaster and ControlPath in your ~/.ssh/config you don't have to authorize your scp connection since it multiplexes in the same connection. This also speeds up your connection you do to the same host.

Have a look at http://www.linux.com/archive/feed/54498 on how to set it up.

Jimmy HedmanJimmy Hedman

You cannot download 'through' an existing session.

scp and sftp work by creating new sessions and talking to an executable on the other end that's running in place of a shell.

The main problem I have is that said file is under root on the server so doing a sftp command is not that simple.

You are logged into a remote server. I presume you can get to this file under your non-root account. So, scp should work. The user your specify under scp can reach everything as if you were logged in.

Download file from ssh session free

Ssh File Transfer Download

Download File From Ssh Session

If you are needing to sudo or su to get to this file on the remote system, the proper thing to do is copy it to your normal user's home directory, chmod so your normal user owns and can read it, then get it with scp, etc. If the file is very large, chmod the file directly temporarily without making a copy.

Another thing you can try - If you are running your own SSH server at home or wherever, and it's reachable from the remote SSH server you're logged into, you can use scp to send it from your remote session to your local system.

LawrenceCLawrenceC
61.7k12 gold badges109 silver badges186 bronze badges

The way I would do what you're asking for would be to turn on session logging on your ssh client (Ways to do this vary. Depending on the file you might get away with just setting a big scrollback buffer.), and then base64 encode the file and blit it to your terminal. :D

You can then trim the extraneous bits off of either end of the log and base64 decode it back into your original file.

For example:

And then, on the client end:

Download File From Ssh Session Windows 10

Some client programs have methods built in for doing pretty much the same thing with, say, the XMODEM protocol or similar, but availability of the transmission software on the server side is probably going to be a lot less than for base64, which is included in most of the Linux distros I've used recently. If you have a client that supports it though, it takes care of the chopping and decoding phase automatically, which can be convenient for large files. I don't know that anybody's really used it since the days of telnet BBSs though, so good luck.

PerkinsPerkins

Not the answer you're looking for? Browse other questions tagged sshdownloadsftp or ask your own question.