Use FTP commands in Linux

Source: Internet
Author: User
Tags ftp commands

1. Connect to the FTP server
Format: ftp [hostname | IP-address]

A) on the Linux Command Line, enter FTP 10.18.34.115.

B) The server will ask you for your username and password, and enter the yint and password respectively. You can wait for the authentication to pass.

2. Download an object

The get and mget commands are usually used to download files.

A) Get

Format: Get [Remote-file] [local-file]

Transfers files from the remote host to the local host.

To obtain E: \ rose \ 1.bmp on the server

Ftp> Get/rose/1.bmp 1.bmp (Press ENTER)

B) mget
Format: mget [Remote-files]

Receives a batch of files from the remote host to the local host.

To obtain all files under E: \ rose \ on the server

Ftp> Cd/rose

Ftp> mget *. * (Press ENTER)

Note: All files are downloaded to the current directory of the Linux host. For example, if you run the FTP command in/root/yint, all files are downloaded to/root/yint.

3. upload files

A) Put

Format: put local-file [Remote-file]

Transfers a local file to the remote host.

If you want to transfer 1.bmp of postgresql to the remote host E: \ rose, and rename it 333.bmp

Ftp> put 1.bmp/rose/333.bmp (Press ENTER)

B) mput

Format: mput local-Files

Transfers a batch of files from the local host to the remote host.

To upload all BMP files in the current local directory to the server E: \ rose

Ftp> Cd/rose (Press ENTER)

Ftp> mput *. BMP (Press ENTER)

Note: All uploaded files are from the current directory of the host. For example, if you run the FTP command in/root/yint, it will be uploaded to the server E: \ rose only in the file Linux under/root/yint.

4. Disconnect

Bye: the connection to the server is interrupted.

Ftp> Bye (Press ENTER)

Reproduced from: http://forum.ubuntu.org.cn/viewtopic.php? T = 104785

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.