Originally posted by Angus_D
go to the Sharing panel in System Preferences.app
Click the checkbox called "Turn on FTP access" so it shows a check.
Then you can FTP to your computer.
Or if you want it to do it securely do this:
If you have a file on your computer you want to move to your other computer (aka the one at home, you're on the road), pull up a terminal window and type in:
scp [file to transfer [username]@[remote machine's ip]:[file to transfer]
If you want to go the other way, first ssh into your machine at home by:
ssh [username]@[remote machine's ip]
then go the the directory where the file you want to copy back to the computer your currently on is and type:
scp [file to tranfer] [username]@[current machine's ip]:[file to transfer]
In both cases, the file will end up in ur home dir on ur respective computers. Why use ftp over scp? Because, like ssh, scp is secure, and like telnet, ftp is insecure. If you need to move a whole bunch of files, first tar it, using:
tar -cf [file to compress].tar -pvP -C [full directory location of file] [file to compress]
Then you can transfer the tared file and decompress it with:
tar -xvf [file.tar]
Whew, that's a ton to absorb. Of course, you could have gotten that all out of the manpages too
HTH,
F-bacher
Stupid html stuff... interpreted my less than/ greater than signs as html code, had to change it all to brackets.
[Edited by Ghoser777 on 12-11-2000 at 07:06 PM]