Re: How to ssh copy a file from local to web host when logged in?

2010-12-20 Thread Alex Dean
On Dec 19, 2010, at 3:31 PM, j...@actionline.com wrote: Kevin replied: From a terminal/console that is not ssh-ed into your web host, copy the files diectly with scp. But my question was what syntax should I use *while I am logged in* to my web host server to copy a file (or directory)

Re: How to ssh copy a file from local to web host when logged in?

2010-12-20 Thread Matt Graham
From: Alex Dean a...@crackpot.org On Dec 19, 2010, at 3:31 PM, j...@actionline.com wrote: But my question was what syntax should I use *while I am logged in* to my web host server to copy a file (or directory) from my local system to my web host server. # scp [what] to [what] ??? I'm not

Re: How to ssh copy a file from local to web host when logged in?

2010-12-20 Thread Alex Dean
On Dec 20, 2010, at 10:07 AM, Matt Graham wrote: This is really a terrible idea, and if you can transfer the files in any other way, it's preferable. But it does seem to work. Nice one. A terrible idea, and a shining beacon of haxx0r 1337-ness! alex

Re: How to ssh copy a file from local to web host when logged in?

2010-12-20 Thread Jordan Aberle
Now we are getting into some fun! http://en.wikipedia.org/wiki/ICMP_tunnel http://thomer.com/icmptx/ -Jordan On Mon, Dec 20, 2010 at 9:13 AM, Alex Dean a...@crackpot.org wrote: On Dec 20, 2010, at 10:07 AM, Matt Graham wrote: This is really a terrible idea, and if you can transfer the

Re: How to ssh copy a file from local to web host when logged in?

2010-12-20 Thread John
I don't know what side you're coming from linux or windows. For linux, you can use nautilus File - Connect to Server change type to ssh then enter server and username and then connect. If you're coming from windows you can download winscp and do the same thing as you'll want to make sure it

Re: How to ssh copy a file from local to web host when logged in?

2010-12-20 Thread JD Austin
Or filezilla for either On Mon, Dec 20, 2010 at 21:31, John jhari...@yahoo.com wrote: I don't know what side you're coming from linux or windows. For linux, you can use nautilus File - Connect to Server change type to ssh then enter server and username and then connect. If you're coming from

How to ssh copy a file from local to web host when logged in?

2010-12-19 Thread joe
What is the syntax to copy a file from a local computer to a web host server when logged in to the web host server? I used to use 'ftp' to upload files to my web host server, but it seems that in the latest update 'ftp has been removed from my system. So when I 'ssh' log-in to my web host

Re: How to ssh copy a file from local to web host when logged in?

2010-12-19 Thread joe
Kevin replied: From a terminal/console that is not ssh-ed into your web host, copy the files diectly with scp. But my question was what syntax should I use *while I am logged in* to my web host server to copy a file (or directory) from my local system to my web host server. # scp [what] to

Re: How to ssh copy a file from local to web host when logged in?

2010-12-19 Thread joe
Thanks Keith! I Found this if it helps:  scp [[u...@]from-host:]source-file [[u...@]to-host:][destination-file] http://www.go2linux.org/scp-linux-command-line-copy-files-over-ssh Keith Smith --- On Sun, 12/19/10, j...@actionline.com j...@actionline.com wrote: