Jetson nanoでFTPサーバーの展開、インストール、およびアクティブ化を完了するための3つのステップ

   FTPサーバーとは何ですか?Du Niangの紹介を引用:

FTPサーバー(ファイル転送プロトコルサーバー)は、インターネット上でファイルの保存とアクセスサービスを提供するコンピューターであり、FTPプロトコルに従ってサービスを提供します。FTPはファイル転送プロトコルです。名前が示すように、これはファイルの転送に特に使用されるプロトコルです。簡単に言えば、FTPプロトコルをサポートするサーバーはFTPサーバーです

   FTPサーバーは、日常の仕事や勉強でよく使われるツールです。たとえば、2台のマシン間でファイルを転送する必要があります。FTPの利便性が反映されています。次の3つの手順で、FTPサーバーの展開とアクティブ化を完了することができます。
1. Jetson nanoにFTPサーバーをインストールしてデプロイすることは、UbuntuにFTPをインストールすることと同じです。ワンクリックインストールにはaptを使用します

sudo apt-get install vsftpd

FTP2.インストールが成功したら次のパスファイルを変更します:/etc/vsftpd.conf、主に次の項目の前にコメントされている**#**を削除します。

配置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.変更後、FTPサービスを再起動します。

sudo /etc/init.d/vsftpd restart

おすすめ

転載: blog.csdn.net/qq_33475105/article/details/106177649