Ftp Connect to Remote Server

2039

How to copy some contents from one server to another server using FTP command?
Consider that you have logged on to your server using your username and password.
Now log on to your remote server using FTP command.
$ ftp servername
$ ***password***
$ ls -> this command will list files and directories of remote server
$ lcd -> list local directories and files of local server.
$ mget files-name
-> this command will copy the specified file from remote server to your local.
$ mput xyz.txt
-> this command will copy the specified file from local to remote server.

We provide solutions for all your linux server problems.