Filezilla was acting weird with version 3.21, which is pretty old; the current one is 3.30. So, I decided to update it but it looks like this is not possible. After spending hours trying it, I returned to the old version 3.21.
Is there any possible way to update it , or is there any other FTP client that works better (and can be updated)?
Update:
I run Ubuntu 16.04 TLS, the post about repositories not having latest versions is not relevant because I need procedures to follow, not an open discussion.
NOTE: The newest precompiled version of Filezilla is now 3.46.3 which was built for Debian 10.0 (Buster). If you are running Ubuntu 18.04 LTS or older, the libc6 library does not contain GLIBC 2.28 which is now required by the precompiled version of Filezilla 3.46.3. Ubuntu 18.10 and newer contain the newer libc6 and are not affected by this. I removed the section below that contained how to replace your installation with the precompiled version since it really is outdated now. It is recommended to install Filezilla from source or through the apt-get install
method (which will be an older version). It is probably best to remove any version that was installed with apt
since it might try to "upgrade" back to the older version.
Build and install Filezilla 3.46.3 from source:
Install the prerequisites for installing from source:
sudo apt install build-essential wx-common libpugixml-dev libsqlite3-dev libwxgtk3.0-dev nettle-dev gnutls-bin libgnutls28-dev
Download libfilezilla-0.19.3
that is needed from here. NOTE: Only libfilezilla-0.11.0
is available in the Ubuntu 18.04 LTS repositories.
Then extract, build and install:
tar -xvjf libfilezilla-0.19.3.tar.bz2
cd libfilezilla-0.19.3/
./configure
make
sudo make install
Now get the source for Filezilla 3.46.3 from here
Then extract, build and install:
tar -vxjf FileZilla_3.46.3_src.tar.bz2
cd filezilla-3.46.3/
./configure
make
sudo make install
With the lib installs you might get the following message if it doesn't start:
filezilla: error while loading shared libraries: libfilezilla.so.0: cannot open shared object file: No such file or directory
To fix it, simply run
sudo ldconfig
Now run Filezilla and it should be the newest version:
Hope this helps!
No comments:
Post a Comment