Toggle navigation
All Forums
Recent Posts
Sign In
ssh Terminal Help
Jump to First Reply
soulcrusher
Posted:
June 10, 2003 10:45PM
in
Genius Bar
edited January 2014
what commands do I use to:
copy a file from my computer to the server
copy a file from the server to my computer
Thank you.
Comments
Reply 1 of 5
costique
Posts:
1,084
member
June 11, 2003 3:34AM
I suggest
man scp
(secure copy via ssh). Or did I misunderstand your question?
0
Likes
0
Dislikes
0
Informatives
Reply 2 of 5
soulcrusher
Posts:
587
member
June 11, 2003 2:34PM
What host is my local hard drive?
0
Likes
0
Dislikes
0
Informatives
Reply 3 of 5
stupider...likeafox
Posts:
1,618
member
June 11, 2003 3:21PM
You might prefer
fugu
, which is a free graphical client for
sftp
(secure ftp).
If your trying to use the command line for whatever reason, then
Code:
man sftp
0
Likes
0
Dislikes
0
Informatives
Reply 4 of 5
1337_5l4xx0r
Posts:
1,558
member
June 11, 2003 3:22PM
well, for example, if 192.169.1.2 is your IP and the remote machine is 192.168.1.5,
scp 192.168.1.5:/home/snarfblatt/.bashrc ./
would copy the remote file .bashrc to the current working directory on the local machine.
scp ./.bashrc 192.168.1.5:/home/snarfblatt/
would do the reverse
0
Likes
0
Dislikes
0
Informatives
Reply 5 of 5
soulcrusher
Posts:
587
member
June 11, 2003 3:56PM
Done
http://www.duke.edu/~aec19/sshduke.jpg
0
Likes
0
Dislikes
0
Informatives
Sign In
or
Register
to comment.
Comments
If your trying to use the command line for whatever reason, then
man sftp
scp 192.168.1.5:/home/snarfblatt/.bashrc ./
would copy the remote file .bashrc to the current working directory on the local machine.
scp ./.bashrc 192.168.1.5:/home/snarfblatt/
would do the reverse
http://www.duke.edu/~aec19/sshduke.jpg