Skip to content
Follow
Ubuntu Linux

How to Install FileZilla on Ubuntu 24.04

Richard
Written by
Richard
Dec 26, 2024 Updated Aug 13, 2026 3 min read
How to Install FileZilla on Ubuntu 24.04
How to Install FileZilla on Ubuntu 24.04

FileZilla is a free program that helps you move files between your computer and a server using File Transfer Protocol (FTP), SFTP, and FTPS. You can install FileZilla on Ubuntu 24.04 in just a few minutes using either the Ubuntu Software app or a quick command in your terminal.

The fastest way to get the program running on your system is to open your terminal and run sudo apt install filezilla. This downloads and sets up the app so you can start dragging and dropping files right away.

⚡ Quick Answer

Install FileZilla using the terminal with `sudo apt install filezilla`. Alternatively, use the Ubuntu Software Center or Flatpak. After installation, find FileZilla in your Activities menu.

Install FileZilla from the Ubuntu repository

Installing FileZilla on Ubuntu 24.04 via the Ubuntu repository offers a recommended method. Open the terminal and run a couple of commands to install FileZilla. This installation process uses the official software sources included with Ubuntu 24.04, ensuring access to a trusted version.

Package updates should run first by executing the command below.

🐧Bash / Shell
sudo apt update
sudo apt upgrade

Next, run the command to install FileZilla.

🐧Bash / Shell
sudo apt install filezilla

Launch FileZilla from Activities Show Applications FileZilla on your desktop.

FileZilla FTP client interface running on the Ubuntu 24.04 desktop
FileZilla FTP client interface running on the Ubuntu 24.04 desktop

Install FileZilla from XtraDeb PPA

The latest FileZilla version installs on Ubuntu 24.04 using the XtraDeb PPA. Personal archives called Personal Package Archives (PPAs) supply newer software releases than standard Ubuntu channels. Adding the PPA to the system must happen before installing FileZilla using this method.

Required packages install by running the command below.

🐧Bash / Shell
sudo apt install software-properties-common apt-transport-https

The PPA joins the system repositories by executing the command below.

🐧Bash / Shell
sudo add-apt-repository ppa:xtradeb/apps

System packages update and FileZilla installs next.

🐧Bash / Shell
sudo apt update
sudo apt install filezilla

Launch FileZilla from Activities Show Applications FileZilla on your desktop.

Install FileZilla from Flatpak

FileZilla installation on Ubuntu 24.04 can utilize Flatpak, a modern application manager that isolates programs for security. Because Flatpak remains absent from standard Ubuntu installations, setting up the package manager must happen before installing the software.

Flatpak is a third-party application distribution system, meaning it's not included in Ubuntu by default.

The Flatpak package manager requires installation first, followed by FileZilla.

System updates and Flatpak installation start the process.

🐧Bash / Shell
sudo apt update && sudo apt upgrade
sudo apt install flatpak

The Flatpak repository joins Ubuntu next.

🐧Bash / Shell
sudo flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo

FileZilla installs last.

After installing FileZilla, running the command `filezilla` in the terminal opens the application, or launching it from the desktop app center works too.

💻Code
flatpak run org.filezillaproject.Filezilla

The application uninstalls using the command below.

🐧Bash / Shell
sudo flatpak uninstall org.filezillaproject.Filezilla

Launch FileZilla from Activities Show Applications FileZilla on your desktop.

That completes the setup process.

Conclusion:

Installing FileZilla on Ubuntu 24.04 offers several options, each with distinct benefits:

  • 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.

Selecting the preferred method matches individual needs while enabling seamless file transfers through FileZilla.

How to install FileZilla in Ubuntu terminal?

All packages remain current. Installing FileZilla dependencies happens next to ensure proper functionality.

Does FileZilla work on Ubuntu?

Default Ubuntu repositories contain FileZilla. The APT package manager handles the installation after opening a terminal window.

What is the best FTP app for Ubuntu?

FileZilla stands out as the premier FTP client on Ubuntu for most users because it remains free and includes advanced features. Ubuntu Server deployments often utilize command-line alternatives like lFTP and NcFTP instead.

Was this guide helpful?

Was this helpful?
Richard

About the Author

Richard

Tech Writer, IT Professional

Richard, a writer for Geek Rewind, is a tech enthusiast who loves breaking down complex IT topics into simple, easy-to-understand ideas. With years of hands-on experience in system administration and enterprise IT operations, he’s developed a knack for offering practical tips and solutions. Richard aims to make technology more accessible and actionable. He's deeply committed to the Geek Rewind community, always ready to answer questions and engage in discussions.

📚 Related Tutorials

Speed Up File Transfers in Windows 11 with Robocopy
Windows Speed Up File Transfers in Windows 11 with Robocopy
How to Install OpenSSL Ubuntu Manually for Latest Security
Ubuntu Linux How to Install OpenSSL Ubuntu Manually for Latest Security
How to Install WildFly on Ubuntu Linux
Ubuntu Linux How to Install WildFly on Ubuntu Linux
How to Install Foswiki on Ubuntu 24.04 with Apache
CMS How to Install Foswiki on Ubuntu 24.04 with Apache

No comments yet — be the first to share your thoughts!

Leave a Comment

Your email address will not be published. Required fields are marked *