Archives For November 30, 1999

FileZilla Client 3.30.0 Released, How to Install

Last updated: January 9, 2018

FileZilla FTP Client

The FileZilla ftp client reached the 3.30.0 release a day ago with two new features and a few bug-fixes. Here’s how to install it in Ubuntu 16.04, Ubuntu 17.04, Ubuntu 17.10.

Changes in Filezilla 3.30.0 include:

  • In the search dialog local files can now be deleted or opened
  • The root node in the remote directory tree is now expanded by default
  • Fix uploading from search dialog
  • Fix formatting of filename in rename dialog
  • Fix Windows installer crash if an update installation is started with the updated version having been installed
  • Add additional logging if autoupdate mechanism fails

How to Install Filezilla 3.30.0 in Ubuntu:

So far the only to install the latest Filezilla client in Ubuntu is using the Flatpak package. And following steps will tell you how:

1. Open terminal via Ctrl+Alt+T or by searching for ‘terminal’ from app launcher. When it opens, do:

  • Run command to add the flatpak PPA:
    sudo add-apt-repository ppa:alexlarsson/flatpak

    Input your password (no visual feedback) when it prompts and hit Enter to continue.

  • Then run commands one by one to get the latest flatpak daemon:
    sudo apt-get update
    
    sudo apt-get install flatpak

2. After installed Flatpak, run following single command to install FileZilla client along with required Gnome platform.

flatpak install --from https://flathub.org/repo/appstream/org.filezillaproject.Filezilla.flatpakref

Uninstall:

To remove Filezilla installed via flatpak, run command:

flatpak uninstall org.filezillaproject.Filezilla

To remove flatpak, run command:

sudo apt-get remove --autoremove flatpak

To remove the PPA, open “Software & Updates” utility and navigate to “Other Software” tab.

This simple tutorial shows you how to install the latest FileZilla Client in all versions of Ubuntu currently supported on the desktop. So far, they are Ubuntu 14.04, Ubuntu 13.10, Ubuntu 12.10, and Ubuntu 12.04.

The current FileZilla release is version 3.7.4. It comes with below new features and bug fixes:

  • Added SOCKS4 support
  • Added Corsican and Kabyle translations
  • SFTP now supports the hmac-sha2-256 algorithm
  • Additional bugfix for site-specific bookmarks
  • Improve compatibility with servers sending directory listings in Polish language or in EBCDIC encoding
  • Handle set user id bit when populating permissions dialog.
  • MSW: Show local timestamps for old files using the correct daylight saving time (DST) offset.
  • Fix loading of transfer queue if starting FileZilla while another instance is in the process of shutting down
  • Fix interaction between site-specific bookmarks and multiple tabs
  • Don’t resume uploads when there’s zero octets left to transfer
  • Improve symbolic link detection when using MLSD
  • If processing a queue with files queued on multiple servers and not storing passwords, the password was not always asked prior to switching servers
  • Use the correct name element when importing sites
  • MSW: Show actual Windows version in about dialog regardless of app-compat settings

Install FileZilla:

If you don’t like PPAs, you can always follow the steps below to install the latest FileZilla Client in Ubuntu.

1. First go to System Settings -> Details and check out your OS type: 32 bit or 64 bit

2. Download FileZilla from the official download page.

  • 32 bit system download the “FileZilla_x.x.x_i586-linux-gnu.tar.bz2”
  • 64 bit system download the “FileZilla_x.x.x_x86_64-linux-gnu.tar.bz2”

3. Press Ctrl+Alt+T on your keyboard to open the terminal. When it opens, run the command below to extract FilaZilla to /opt/.

cd /opt/ && sudo tar jvxf FileZilla_*-linux-gnu.tar.bz2

In the code, you may replace the file name to yours!

4. Change the ownership of extracted folder:

cd /opt/ && sudo chown -R root:root FileZill*

5. Now, you’re able to launch FileZilla Client via the command below:

/opt/FileZill*/bin/filezilla

6. To create a launcher. Run the command below to edit the config file:

sudo gedit /usr/share/applications/filezilla.desktop

Copy and paste below lines into the file and save it.

[Desktop Entry]
Name=FileZilla
GenericName=FTP client
GenericName[de]=FTP-Client
GenericName[fr]=Client FTP
Comment=Download and upload files via FTP, FTPS and SFTP
Comment[de]=Dateien über FTP, FTPS und SFTP übertragen
Comment[fr]=Transférer des fichiers via FTP, FTPS et SFTP
Exec=/opt/FileZilla3/bin/filezilla
Terminal=false
Icon=filezilla
Type=Application
Categories=Network;FileTransfer;
Version=1.0

Change the FileZilla3 to the exact folder name and done.