如何在Linux上使用FileZilla管理远程文件
FileZilla支持多种安装方式,以下是常见发行版的操作步骤:
sudo apt update更新软件包列表,再用sudo apt install filezilla安装;如需中文界面,可额外运行sudo apt install filezilla-locales。sudo dnf update更新列表,再用sudo dnf install filezilla安装。sudo pacman -Syu同步系统,再用sudo pacman -S filezilla安装。.tar.bz2格式),解压后进入解压目录,运行./filezilla启动;如需创建桌面快捷方式,可编辑/usr/share/applications/filezilla.desktop文件,添加以下内容:[Desktop Entry]
Encoding=UTF-8
Name=FileZilla
Comment=FTP Client
Exec=/path/to/filezilla/bin/filezilla
Icon=/path/to/filezilla/share/pixmaps/filezilla.png
Terminal=false
Type=Application
Categories=Application;Network;
```。
sudo apt install flatpak;添加Flathub仓库flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo;安装FileZillaflatpak install flathub org.filezilla.FileZilla;运行flatpak run org.filezilla.FileZilla启动。启动FileZilla后,通过以下步骤配置连接:
Ctrl+S。192.168.1.100或example.com)。root或普通用户)和密码。连接成功后,可通过以下操作管理远程文件:
Delete键或右键选择“删除”。sudo systemctl status ssh);确认防火墙是否允许SFTP端口(22)通过(sudo ufw allow 22);确保用户名和密码正确。sudo filezilla以管理员权限启动;或修改远程目录权限(如sudo chmod 777 /remote/directory,谨慎使用)。sudo apt install openssh-server→sudo systemctl start ssh);检查SSH配置(/etc/ssh/sshd_config)中PasswordAuthentication是否设置为yes(允许密码登录)。