ftpd

ftpd

The ftpd command in Linux is a daemon that provides an FTP server. It allows users to connect to your computer and transfer files.

For example, the following command will start the ftpd daemon and listen on port 21:

ftpd -p 21

The ftpd command is a powerful tool that can be used to share files with other users. However, it is important to use it carefully, as it can be a security risk.

help

ftpd [options]

Start an FTP server.

Options:

-p, --port=PORT     Listen on port PORT.
-l, --listen=ADDRESS  Listen on address ADDRESS.
-r, --root=DIRECTORY  Change to directory DIRECTORY before accepting connections.
-a, --anonymous     Allow anonymous users to connect.
-m, --masquerade     Allow anonymous users to masquerade as local users.
-h, --help          Show this help message.

breakdown

Last updated