温馨提示×

怎么在Linux安装FileZilla

小樊
33
2026-07-10 19:32:12
栏目: 智能运维

在 Linux 上安装 FileZilla(FTP 客户端)非常简单,下面按常见发行版给你说明,你可以直接对照使用。


一、Ubuntu / Debian 系列

方法 1:使用 apt(推荐)

sudo apt update
sudo apt install filezilla

安装完成后,在菜单中搜索 FileZilla,或终端运行:

filezilla

二、CentOS / Rocky / AlmaLinux

CentOS 7

sudo yum install epel-release -y
sudo yum install filezilla -y

CentOS 8 / Rocky / AlmaLinux

sudo dnf install epel-release -y
sudo dnf install filezilla -y

三、Arch Linux / Manjaro

sudo pacman -S filezilla

四、Fedora

sudo dnf install filezilla

五、通用方式(AppImage / 官方版本)

如果你不想用包管理器,也可以用 AppImage(适合所有 Linux):

  1. 打开官网:https://filezilla-project.org/
  2. 下载 Linux (64bit) 的 AppImage
  3. 赋予执行权限:
chmod +x FileZilla_*_x86_64.AppImage
  1. 运行:
./FileZilla_*_x86_64.AppImage

六、验证是否安装成功

filezilla --version

七、常见问题

1️⃣ 软件中心找不到?

  • 确认已启用 universe / EPEL
  • 或直接使用命令行安装

2️⃣ 中文界面

FileZilla 默认支持中文,安装后可在:

Edit → Settings → Interface → Language

选择 Chinese (Simplified)


如果你告诉我 具体 Linux 发行版和版本号(如 Ubuntu 22.04、CentOS 7),我可以给你更精确的命令 ✅

0