[安裝 FTP Server] aptitude update aptitude upgrade aptitude install vsftpd [設定 FTP Server] nano /etc/vsftpd.conf 關閉匿名登入 # Allow anony...
[安裝 FTP Server]
- aptitude update
- aptitude upgrade
- aptitude install vsftpd
[設定 FTP Server]
- nano /etc/vsftpd.conf
- 關閉匿名登入
- 啟用之功能
- 完工
# Allow anonymous FTP? (Beware - allowed by default if you comment this out).
anonymous_enable=No
# Uncomment this to enable any form of FTP write command.
write_enable=YES
# Default umask for local users is 077. You may wish to change this to 022,
# if your users expect that (022 is used by most other ftpd's)
local_umask=022