Skip to content Skip to sidebar Skip to footer

Bash Command for Uploading File Onto the Ftp

Stylized Linux terminal prompt
Fatmawati Achmad Zaenuri/Shutterstock.com

The File Transfer Protocol is older than near of our readers, but it'due south nonetheless going strong. FTP doesn't accept the security of a modern protocol, merely you may demand to use it anyhow. Here's how to practice it.

Warning: Don't Apply FTP Over the Internet

Let'southward make this articulate right from the beginning: The File Transfer Protocol (FTP) dates back to the early 1970s and was written without any regard to security. Information technology does not use encryption for annihilation. Login credentials like your username and password, besides as the data yous download or upload, are transferred in articulate text. Anyone along the way can view your secrets. Nevertheless, FTP still has its uses.

If yous're transferring files within your network, you should be safe–equally long equally no 1 on the network is packet-sniffing and eavesdropping on whatsoever sensitive documents as you transfer them. If your files aren't confidential or sensitive in whatsoever way, moving them around your internal network with FTP should exist fine. Linux has the standard ftp command line plan to deal with precisely that scenario.

Just definitely don't employ theftp command to admission external resource across the internet. For that, use the sftp command line program, which uses the secure SSH File Transfer Protocol. We'll introduce both of these programs in this tutorial.

To clarify just why you never want to employ FTP over the Internet, take a look at the beneath screenshot. It shows the FTP password in plaintext. Anyone on your network or between yous and the FTP server on the Cyberspace can easily see the password is "MySecretPassword."

Without the encryption, a malicious actor could modify files you're downloading or uploading in transit, likewise.

Network packet trace with clear text password

The ftp Command

Assuming you lot have a valid account on an FTP site, you can connect to it with the post-obit command. Throughout this article, substitute the IP address in the commands with the IP address of the FTP server y'all're connecting to.

ftp  192.168.4.25

Warning: You should only utilise the ftp command to connect to servers on a trusted local network. Use the sftp control, covered beneath, for transferring files over the internet.

The FTP server responds with a welcome message. The diction of the greeting will vary from server to server. It then asks for the username of the account y'all are logging into.

Notice that the IP  accost of the site you're connecting to is displayed, followed by your Linux user proper noun. If your account name on the FTP server is the same every bit your Linux user proper noun, just press the Enter key. This will use your Linux user name equally the account name on the FTP server. If your Linux user name and the FTP business relationship name are different, type in the FTP business relationship user name and then press Enter.

Logging In to the FTP Server

Yous will be prompted to enter your password for the FTP site. Enter your password and printing Enter. Your password is not displayed on the screen. If your FTP user business relationship proper name and password combination are verified by the FTP server, you are so logged into the FTP server.

You volition be presented with the ftp> prompt.

Looking Effectually and Retrieving Files

Showtime, yous'll probably want to get a listing of the files on the FTP server. The ls control does just that. Our user sees the file gc.c is on the FTP server, and he wants to download it to his own computer. His computer is the "local reckoner" in FTP parlance.

The command to retrieve (or "get") a file is get.  Our user, therefore, bug the command get gc.c. They type get, a space, and and so the proper name of the file they wish to retrieve.

The FTP server responds by transferring the file to the local computer and confirming the transfer took place. The size of the file and the time information technology took to transfer are also shown.

ls
get gc.c

To call up multiple files at in one case, use themget (multiple become) command. The mget control volition ask you to confirm whether you want to download each file in plough. Respond by pressing "y" for yes and "n" for no.

This would exist tedious for a bully number of files. Because of this, collections of related files are usually stored on ftp sites as unmarried tar.gz or tar.bz2 files.

RELATED: How to Excerpt Files From a .tar.gz or .tar.bz2 File on Linux

mget *.c

Uploading Files to the FTP Server

Depending on the permissions that accept been granted to your FTP account you might be able to upload (or "put") files to the server. To upload a file, use the put command. In our example, the user is uploading a file chosen Songs.tar.gz to the FTP server.

put Songs.tar.gz

As yous probably expect, there is a command to put multiple files to the FTP server at once. Information technology is chosen mput (multiple put). Just like the mget command did, mput will ask for a "y" or "n" confirmation for the uploading of each file, one by ane.

The same statement for putting sets of files into tar athenaeum applies for putting files as it does for getting files. Our user is uploading multiple ".odt" files with the following command:

mput *.odt

Creating and Changing Directories

If your user account on the ftp server permits it, you lot may be able to create directories. The control to exercise this is mkdir . To be clear, whatsoever directory you lot create with the mkdir command will be created on the ftp server and non on your local figurer.

To alter directories on the ftp server, utilise the cd command. When you apply the cd command the ftp> prompt will non change to reflect your new current directory. The pwd (print working directory) control will show y'all your current directory.

Our ftp user creates a directory called music, changes into that new directory, confirms where they are past using the pwd control then uploads a file to that directory.

mkdir music
cd music
pwd
put songs.tar.gz

To quickly moved to the parent directory of the current directory use the cdup control.

cdup

cdup command in a terminal widnowindow

Accessing the Local Computer

To change the directory on the local computer, you lot tin use the lcd control at the ftp> prompt. It is, however, easy to lose rail of where you are in the local filesystem. A more convenient method of accessing the local filesystem is to use the ! control.

The ! control opens a shell window to the local computer. You can do anything in this shell that you tin can in a standard last window. When you type leave you are returned to the ftp> prompt.

Our user has used the ! command and entered a beat out window on the local computer. They have issued an ls command to meet what files are present in that directory and so typed leave to return to the ftp> prompt.

!
ls
exit

Renaming Files

To rename files on the FTP server utilize the rename command. Hither our FTP user renames a file with rename and and then uses the ls command to listing the files in the directory.

rename songs.tar.gz rock_songs.tar.gz
ls

rename command in the terminal window

Deleting Files

To delete files on the FTP server apply the delete control. To delete several files at once, use the mdelete command. Y'all will be asked to provide a "y" or "due north" confirmation for the deletion of each file.

Here our FTP user has listed the files to meet their names and so called one to delete. They so decide to delete them all.

ls
delete gc.o
mdelete *.o

Using the sftp Command

Readers familiar with the IP addressing system will have noticed that the 192.168 address of the FTP server used in the to a higher place examples is an internal IP accost, also called a private IP address. As nosotros warned at the beginning of this commodity, the ftp command should merely be used on internal networks.

If you want to connect to a remote or public FTP server use the sftp command. Our user is going to connect to an SFTP business relationship called demo on the publicly attainable FTP server located at test.trebex.net.

When they connect, they are informed that the connectedness has been established. They are too informed that the authenticity of the host cannot be verified. This is normal for the first connection a new host. They press "y" to accept the connexion.

Because the user account proper noun (demo) was passed on the command line they are not prompted for the user account name. They are prompted just for the password. This is entered, verified and accepted, and they are presented with the sftp> prompt.

sftp demo@test.rebex.net

The FTP commands we take described above will work only the same in an SFTP session, with the post-obit exceptions.

  • To delete a file use rm (FTP uses delete)
  • To delete multiple files employ rm (FTP uses mdelete)
  • To movement to the parent directory utilise cd .. (FTP uses cdup)

Our user has used a few commands in their SFTP session. They accept employ ls to list the files, and cd to alter into the pub directory. They have used the pwd to print the working directory.

sftp commands in a terminalwindow

There are other options to transfer files in the Linux world, notably scp (secure copy), but nosotros've focused on FTP and SFTP here. Used in the applicative scenarios these 2 commands will serve you and your file storage and retrieval needs well.

stewartsaidee1971.blogspot.com

Source: https://www.howtogeek.com/412626/how-to-use-the-ftp-command-on-linux/

Post a Comment for "Bash Command for Uploading File Onto the Ftp"