FTP server 架設 vsftpd

#vsftpd

apt-get install vsftpd


#edit config
vim /etc/vsftpd.conf
anonymous_enable=NO   (匿名登入)
local_enable=YES
write_enable=YES
local_umask_022

#restart vsftpd
/etc/init.d/vsftpd restart

#vsftpd adduser [debian]
//vsftpd使用者與debian 的user是同步的
//所以只要新增debian的user,vsftpd就可使用
adduser username


//參考資料 : abintech.twidv.com/2007/09/ftp-server-vsftpd-proftpd.html

留言