Home » Questions » Computers [ Ask a new question ]

Is there a way to download through telnet

Is there a way to download through telnet

I am transfering colleges and I have a lot of files from the first college that I would like to keep. The files are are on a Sun server which I can only access using telnet. Is there a way to download the files from the server using telnet?

Asked by: Guest | Views: 133
Total answers/comments: 2
Guest [Entry]

The easiest way is if you can run binaries on the machine, so set up a simple ftp server or something. If you can't do that, perhaps a combination of tar/gz to get one file, and then you can netcat it across? As a last restore, uuencode and cat could be used.
Guest [Entry]

"Only way I see is to tar everything and convert it to base64. Once you are done with that, just ""cat"" it on remote side. If your telnet client (e.g. putty) has log, just log everything in file.

Once received, just unbase64 and untar it. That should give you your data.

But do notice that this procedure is pain-in-the-ass and it takes a while for any significant amount of data."