Three steps to complete the deployment, installation and activation of the FTP server in Jetson nano

   What is an FTP server ? Quoting Du Niang's introduction:

FTP server (File Transfer Protocol Server) is a computer that provides file storage and access services on the Internet. They provide services in accordance with the FTP protocol. FTP is File Transfer Protocol. As the name suggests, it is a protocol specifically used to transfer files. Simply put, a server that supports the FTP protocol is an FTP server

   FTP server is a tool that is often used in daily work and study. For example, it is necessary to transfer files between two machines. The convenience of FTP is reflected. The following three steps can complete the deployment and activation of the FTP server.
1. Installing and deploying FTP server in Jetson nano is the same as installing FTP in Ubuntu. Use apt for one-click installation :

sudo apt-get install vsftpd

FTP2. After the installation is successful, modify the following path file: /etc/vsftpd.conf , mainly to remove the **#** commented in front of the following items.

配置FTP服务
# Uncomment this to allow local users to log in.
local_enable=YES
#
# Uncomment this to enable any form of FTP write command.
write_enable=YES
#
# Default umask for local users is 077. You may wish to change this to 022,
# if your users expect that (022 is used by most other ftpd's)
local_umask=022
#
# Uncomment this to allow the anonymous FTP user to upload files. This only
# has an effect if the above global write enable is activated. Also, you will
# obviously need to create a directory writable by the FTP user.
#anon_upload_enable=YES
#
# Uncomment this if you want the anonymous FTP user to be able to create
# new directories.
#anon_mkdir_write_enable=YES
#
# Activate directory messages - messages given to remote users when they
# go into a certain directory.
dirmessage_enable=YES

# ASCII mangling is a horrible feature of the protocol.
ascii_upload_enable=YES
ascii_download_enable=YES

3. After the modification, restart the FTP service:

sudo /etc/init.d/vsftpd restart

Guess you like

Origin blog.csdn.net/qq_33475105/article/details/106177649