ubuntu 11.04安裝ftp服務器
sudo apt-get install vsftpd
默認登錄需要帳號密碼,其根目錄是用戶根目錄
客戶端命令:
登錄:
ftp [-46pinegvd] [host[port]]
文件下載:
get remote-file [local-file]
ftp命令行不支持目錄下載
通過wget得到解決
#wget ftp://IP:PORT/* --ftp-user=xxx --ftp-password=xxx -r
詳見:man ftp
或者直接瀏覽器下載
或者直接瀏覽器下載

