解决vsftpd的refusing to run with writable root inside chroot错误
这几天又重操旧业——在路由器上使用Aria2进行离线下载,并使用vsftpd进行分享。之前VPS上的vsftpd配置得很顺利,但是这次路由器上却遇到了点问题。下面是翻译国外某博客的解决方法。升级vsftpd或者vsftpd-ext后,登录时可能会出现这样的错误:500 OOPS: vsftpd: refusing to run with writable root inside chroot ()这是由于下面的更新造成的:- Add stronger checks for the configuration error of running with a writeableroot directory inside a chroot(). This may bite people who carelessly turnedon chroot_local_user but such is life.问题的是因为用户的根目录可写,并且使用了chroot限制,而这在最近的更新里是不被允许的。要修复这个错误,可以用命令chmod a-w /home/user去除用户根目录的写权限,注意把目录替换成你自己的。或者你可以在vsftpd的配置文件中增加下列两项中的一项:对于标准的vsftpd build (vsftpd):allow_writeable_chroot=YES对于扩展的vsftpd build (vsftpd-ext):allow_writable_chroot=YES
页:
[1]