共计 1150 个字符,预计需要花费 3 分钟才能阅读完成。
在树莓派终端安装 FTP 服务器
sudo apt-get install vsftpd
然后对 FTP 进行配置,打开它的配置文件
sudo nano /etc/vsftpd.conf
修改以下配置
# 不允许匿名访问
anonymous_enable=NO
# 设定可以进行写操作
write_enable=YES
# 设定本地用户可以访问
local_enable=YES
ascii_upload_enable=YES
ascii_download_enable=YES
重启服务
sudo service vsftpd restart
完成以上的配置就可以访问树莓派下的 FTP 服务器了。
在 Windows 的命令行下连接 ftp 服务器
ftp xx.xx.xx.xx
输入用户名和密码
用户 (xx.xx.xx.xx:(none)): xxx
331 Please specify the password.
密码:
230 Login successful.
切换目录,上传文件
ftp> lcd d:\
目前的本地目录 D:\。
ftp> put Xware1.0.30_armel_v5te_glibc.zip
200 PORT command successful. Consider using PASV.
150 Ok to send data.
226 Transfer complete.
ftp: 发送 2078853 字节,用时 6.65 秒 312.70 千字节 / 秒。
断开连接
ftp> bye
以上就是关于在树莓派下部署 FTP 服务器,和从 Windows 访问树莓派 FTP 服务器的方法了。
Mac OS X 下给树莓派安装 Raspbian 系统 http://www.linuxidc.com/Linux/2016-12/139019.htm
如何在树莓派 2 运行 Ubuntu Snappy Core http://www.linuxidc.com/Linux/2015-08/122438.htm
在(Raspberry Pi)树莓派上安装 NodeJS http://www.linuxidc.com/Linux/2015-01/111714.htm
Raspberry Pi(树莓派)的安装、配置 IP 及软件源等入门 http://www.linuxidc.com/Linux/2013-10/91009.htm
树莓派 Linux shell http://www.linuxidc.com/Linux/2017-01/139850.htm
树莓派 3B 部署 Mono+Jexus+PHP+MySQL+PostgreSQL+Apache2+SVN 步骤 http://www.linuxidc.com/Linux/2017-01/139677.htm
本文永久更新链接地址:http://www.linuxidc.com/Linux/2017-02/140126.htm