In this guide, we’ll walk through the process of installing FileZilla on Ubuntu 22.04 (Jammy Jellyfish) and explore how to utilize FileZilla for seamless file transfers between your local system and a remote system.
FileZilla is a freely available and open-source FTP client compatible with both Windows and Linux operating systems. It serves as a robust client for various protocols including plain FTP, FTP over SSL/TLS (FTPS), and the SSH File Transfer Protocol (SFTP).
Key Features include:
Filezilla client can be installed either via command line or GUI. In this tutorial, we will cover both methods. So, let’s jump into the installation steps,
We are assuming your system have stable internet connection because apt command would be downloading FileZilla package from repositories. Filezilla package and its dependencies are available in the default package repositories.
Open the terminal and run following commands,
$ sudo apt update $ sudo apt install -y filezilla
Above commands will install filezilla on your ubuntu system.To verify the installation and filezilla version, execute following commands
$ sudo apt list --installed | grep filezilla $ filezilla --version
How to remove/uninstall filezilla
sudo apt-get purge filezilla sudo apt-get autoremove rm -fr ~/.config/filezilla