English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية

Linux ftp command

Linux Command大全

Linux ftp command to set file system related functions.

FTP is the standard file transfer protocol of ARPANet, which is the predecessor of today's Internet.

Syntax

ftp [-dignv][Host name or IP address]

Parameters:

  • -d Display the detailed process of command execution, which is convenient for troubleshooting or analyzing the execution of the program.

  • -i Disable interactive mode, do not ask any questions.

  • -g Disable the extension feature of special characters in the local host file name.

  • -n Do not use automatic login.

  • -v Display the process of command execution.

Online Examples

For example, use the ftp command to log in anonymously to the ftp.kernel.org server, which is the official server for the Linux kernel. You can use the following command:

ftp ftp.kernel.org # Initiate link request

Linux Command大全