温馨提示×

filezilla对debian要求啥

小樊
31
2026-09-16 22:32:20
栏目: 智能运维

FileZilla 本身分两种常见用法,对 Debian 的要求也不同,下面分开说:


1. FileZilla Client(客户端,在 Debian 上用)

用于在 Debian 上连接 FTP/SFTP 服务器。

系统要求

  • Debian 版本
    • 官方源支持 Debian 10(Buster)及以上
    • 推荐使用 Debian 11 / 12
  • 架构:amd64、i386、armhf、aarch64 都支持
  • 依赖
    • GTK3 图形环境(桌面用户一般都有)
    • 基本库:libwxgtk3.0 / libwxgtk3.2libgnutlslibsqlite3
  • 无桌面环境
    不能用图形版,可用 filezilla 命令行替代品(如 lftpftpsftp

安装方式

sudo apt update
sudo apt install filezilla

2. FileZilla Server(服务端,在 Debian 上跑)

用于把 Debian 做成 FTP 服务器。

系统要求

  • Debian 版本
    • 官方支持 Debian 11 / 12(64 位)
    • 不支持 32 位系统
  • 依赖
    • libstdc++glibc 2.31+
    • systemd(必须用)
  • 权限
    • 需要 root 或 sudo 安装
    • 默认监听 21(FTP)、990(FTPS)

安装(官方方式)

sudo apt install -y ca-certificates curl
sudo mkdir -p /etc/apt/keyrings
sudo curl -fsSL https://filezilla-project.org/keys/filezilla-linux-key.asc | gpg --dearmor -o /etc/apt/keyrings/filezilla.gpg

echo "deb [signed-by=/etc/apt/keyrings/filezilla.gpg] https://filezilla-project.org/apt bookworm main" | sudo tee /etc/apt/sources.list.d/filezilla.list

sudo apt update
sudo apt install filezilla-server

3. 常见问题

  • 服务器没图形界面也能跑 FileZilla Server(它是后台服务)
  • 防火墙要放行端口
  • Debian 最小安装可能缺依赖,先装:
sudo apt install libgtk-3-0

如果你是想:

  • 在 Debian 上连服务器 → 用 Client
  • 把 Debian 做成 FTP 服务器 → 用 Server

可以告诉我你的具体用途,我可以给你更精确的步骤。

0