This article explains how to install the FileZilla client on Ubuntu 24.04.
FileZilla is a free, open-source FTP (File Transfer Protocol) client that allows users to transfer files between their local computer and a remote server. It supports various protocols, including FTP, SFTP (SSH File Transfer Protocol), and FTPS (FTP Secure).
Its user-friendly interface is designed to simplify file transfers, even for those who may not be familiar with command-line tools. FileZilla’s drag-and-drop feature is a time-saving marvel, allowing users to upload or download files swiftly with a simple mouse movement.
FileZilla has a built-in transfer queue lets users manage multiple file transfers, including pausing and resuming them as needed.
There are multiple ways to install FileZilla on Ubuntu. Below, we’ll list some ways to install it on Ubuntu Linux.
Install FileZilla from the Ubuntu repository
The quickest way to install FileZilla is from Ubuntu’s repository. However, the version that will be installed won’t necessarily be the latest.
First, update packages by running the command below.
sudo apt update
sudo apt upgrade
Then, run the command below to install FileZilla.
sudo apt install filezilla
Once installed, you can launch it by going to Activities > Show Applications > FileZilla on the desktop.

Install FileZilla from XtraDeb PPA
If you want to install the latest version, installing it from the XtraDeb PPA will do.
To do that, install the packages below.
sudo apt install software-properties-common apt-transport-https
Then, add the PPA by running the command below.
sudo add-apt-repository ppa:xtradeb/apps
Update and install FileZilla.
sudo apt update
sudo apt install filezilla
Once installed, you can launch it by going to Activities > Show Applications > FileZilla on the desktop.
Install FileZilla from Flatpak
Yet another way to install FileZilla is to use the Flatpak package manager. Flatpak uses a sandboxing package installation, enhancing security and allowing easy updates.
Flatpak is a third-party application distribution system that is not included in Ubuntu by default.
You must install the Flatpak package manager and then install FileZilla from there.
First, update and install Flatpak.
sudo apt update && sudo apt upgrade
sudo apt install flatpak
Next, add the Flatpak repository to Ubuntu.
sudo flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
Finally, install GoLand.
flatpak install flathub org.filezillaproject.Filezilla
Once installed, you can launch it using the command below or open the app in the desktop apps center.
flatpak run org.filezillaproject.Filezilla
Uninstall the app using the command below.
sudo flatpak uninstall org.filezillaproject.Filezilla
You can launch it by going to Activities > Show Applications > FileZilla on the desktop.
That should do it!
Conclusion:
In summary, installing FileZilla on Ubuntu 24.04 can be done in several ways, each with its advantages:
- Ubuntu Repository: Quick and straightforward, ideal for those who need basic functionality.
- XtraDeb PPA: Offers the latest version of FileZilla, ensuring access to new features and updates.
- Flatpak: Provides enhanced security through sandboxing and a robust system for managing software dependencies.
Choose the method that best fits your needs, and enjoy seamless file transfers with FileZilla!
Leave a Reply Cancel reply