How to compile and install FileZilla on Debian Lenny - Printable Version +- ispCP - Board - Support (http://www.isp-control.net/forum) +-- Forum: ispCP Omega Contributions Area (/forum-40.html) +--- Forum: Howtos (/forum-41.html) +--- Thread: How to compile and install FileZilla on Debian Lenny (/thread-10365.html) |
How to compile and install FileZilla on Debian Lenny - Nuxwin - 04-12-2010 12:42 PM How to compile and install FileZilla 3.3.3 on Debian Lenny
For the record, FileZilla is one of the most popular Ftp client that is used by a large community of users, specially under Windows. Unfortunately, Debian Lenny provides a old version of this software (3.0.11.1), so, it's good to know how to compile and install the last available version of this software from the source tarball. Well, to resume, this howto describes the procedure that must be followed to compile and install the last version of FileZilla on Debian Lenny. ***
******
***
Dependencies installation ~~~~~~~~~~~~~~~~~~~~ To compile FileZilla and also two other libraries (see below), we must install a lot of packages. This can be done by executing the following commands: 1. Installation of the required libraries and tools: Code: # aptitude update ***
******
***
Now, we must get and install manually two libraries that are required to compile Filezilla. These librairies are GnuTLS and wxWidgets. Of course, Debian provides the packages for them but the provided versions are too old. GnuTLS library ~~~~~~~~~~~~ 1. Get the latest available tarball of the GnuTLS library and extract it: Code: $ mkdir -p ~/Desktop/FileZilla/needed_libraries This accomplished, we should run the configuration script and make the compilation: 2. Configuration and compilation: Code: $ cd gnutls-2.8.6 Finally, we can install the GnuTLS library under /usr/local by executing the following commands: 3. Installation: Code: $ su wxWidgets library ~~~~~~~~~~~~~~ 1. Get the latest available tarball of the wxWidgets library and extract it: Code: $ cd ~/Desktop/FileZilla/needed_libraries This accomplished, we should run the configuration script and make the compilation: 2. Configuration and compilation: Code: $ cd wxWidgets-2.8.10 Finally, we can install the wxWidgets library under /usr/local by executing the following commands: 3. Installation: Code: $ su Ok now that the required libraries are installed, let's me explain how compile and install FileZilla FileZilla ~~~~~~~ 1. Get the latest available tarball of FileZilla and extract it: Code: $ cd ~/Desktop/FileZilla This accomplished, we should run the configuration script and make the compilation: 2. Configuration and compilation: Code: $ cd filezilla-3.3.3 Finally, we can install FileZilla under /usr/local by executing the following commands: 3. Installation: Code: $ su Ok, FileZilla is now installed but how to launch it ? The response is quick simple: Just go to your Application -> internet menu and click on the FileZilla item. Enjoy ; RE: How to compile and install FileZilla on Debian Lenny - Nuxwin - 07-08-2010 09:50 PM -- Updated to FileZilla 3.3.3 |