FileZilla使用ssh服务和FTP服务连接Ubuntu
目录
1.FileZilla安装
(1)ssh服务
(2)FTP服务
①Ubuntu中下载vsftpd并配置文件
1.FileZilla安装
filezilla下载
下载好之后,直接安装,过程中除了更换路径以外,其他都是默认。
(1)ssh服务
关于ssh服务在Ubuntu中的文件配置和ssh服务的启动和关闭,看这篇博客
关于XShell下载安装和连接Ubuntu(linux)
配置好ssh服务之后,来使用FileZila连接Ubuntu
(2)FTP服务
①Ubuntu中下载vsftpd并配置文件
下载:sudo apt-get install vsftpd
下载的时候可能报下面的问题:
解决方案:
sudo rm /var/lib/dpkg/lock
重启 系统
sudo systemctl --force --force reboot
打开配置文件:
sudo gedit /etc/vsftpd.conf
启动vsftpd:
sudo /etc/init.d/vsftpd start
关闭:
sudo /etc/init.d/vsftpd stop