1 |
FTP (File Transfer Protocol) is the way that people transfer files from one internet machine to another.
|
2 |
You can use the ftp protocol directly from Unix machines using a command line:
-
> ftp internethostmachinename
|
3 |
where it will prompt you for an account login name and password. You will then be connected to the home directory of that account and can use commands to move around the directory structure (cd and ls) and commands get and put to copy a file to or from your original location.
|
4 |
Other ftp interfaces may be provided by your telnet program, or by other software programs such as fetch.
|
5 |
FTP will transfer files of all types and formats. If the files are large, such as images, you may want to transfer in binary mode (the default is ascii).
|
6 |
Some machines may provide a special ftp account called "anonymous". You use your ftp program as usual, except that the login name is "anonymous". The password can be anything, but netiquette obliges you to give your email address. The directory that you are connected to is a public directory provided by the host machine.
|