ubuntu配置ftp服务器

zyg 2年前 (2023-02-04) 阅读数 2467 #Linux使用

54fbb2fb43166d2273d5d3e34f2309f79052d223.png

(一)下载ftp服务器工

在ubuntu下载ftp工具,命令行下载vsftpd:

sudo apt-get install vsftpd

(二)配置vsftpd

配置简易的vsftp服务,首先备份其配置文件:

sudo cp /etc/vsftpd.conf /etc/vsftpd.conf_cp

打开配置文件:

sudo vim /etc/vsftpd.conf

配置一些必须的选项:

# Run standalone?  vsftpd can run either from an inetd or as a standalone
# daemon started from an initscript.
listen=YES

# Allow anonymous FTP? (Disabled by default).
anonymous_enable=YES

# Uncomment this to enable any form of FTP write command.
write_enable=YES

重启vsftp服务:

sudo service vsftpd restart

至此,vsftp已经可以实现简易的传输功能,可以在windows端安装filezilla进行数据的传输

(三)传输测试

使用FileZilla连接ubuntu主机,分别输入IP,用户名,密码,端口输入22,测试u-boot的拷贝:

image.png

传输没问题。

版权声明

本文仅代表作者观点。
本文系作者发表,未经许可,不得转载。

发表评论:

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。

yanguo

yanguo

管理员
作者文章
最新文章
标签列表
    欢迎你第一次访问网站!