是否有可能在 ubuntu 上安装 GUI ftp(例如:Windows 上的 filezilla 服务器)我试过 gadminproftpd,但它无法正常工作。建议使用其他工具。
答案1
我建议你安装proftpd
并webmin
。你将获得基于 Web 的 ftp 服务器配置访问权限
安装proftpd
sudo apt-get install proftpd
安装webmin
首先,您需要添加 Webmin 官方存储库并确保所有软件包都是最新的。
sudo nano /etc/apt/sources.list
并添加以下几行:
deb http://download.webmin.com/download/repository sarge contrib
deb http://webmin.mirror.somersettechsolutions.co.uk/repository sarge contrib
获取并安装 GPG 密钥:
sudo wget http://www.webmin.com/jcameron-key.asc
sudo apt-key add jcameron-key.asc
使用以下命令安装 Webmin:
sudo apt-get update
sudo apt-get install webmin -y
您可以使用 Web 浏览器访问 Webmin 面板。Webmin 使用 10000 作为其默认端口。https://ip 地址:10000然后以超级用户或 root 访问权限登录。如果您使用防火墙,请打开端口 80 和 10000 以启用对控制面板的访问。
然后,登录后使用菜单系统浏览到 Webmin 配置并选择 Webmin 模块。
ProFTPD 是 Webmin 中的标准模块,因此我们需要在 Webmin 中选择标准模块,然后浏览以选择该模块
然后您将看到所有标准模块。浏览到 ProFTPD 并安装它。
最后您将获得基于 Web 的proftpd
配置工具。
你还有更多这里