1. 修改配置文件
vi /etc/vsftpd/vsftpd.conf
2. 文件里追加一下语句
local_root=/
chroot_local_user=YES
anon_root=/
ps:local_root 针对系统用户;anon_root 针对匿名用户。
3. 重启服务
service vsftpd restart
ps:如果重启时出现错误:config file not owned by correct user需要修改下权限
chown -R root.root /etc/vsftpd/vsftpd.conf
Comments | NOTHING