How To Install Proftpd An FTP Free Server In Linux Systems
- Forums
- Linux Hosting
- How To Install Proftpd An FTP Free Server In Linux Systems
I Want To Know About Installing Steps For Proftpd Server On My Linux Server Using A Command So Please Give Me The Instructions Quickly [1319], Last Updated: Mon Jun 24, 2024
Huikin4u
Sun Jan 03, 2010
6 Comments
1819 Visits
i tried to install ProFTPD Server in my Linux Centos server but when i try using the command you sent me it doesnt work, this is what i send in the shell terminal:
yum install proftpd
i get this:
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
* addons: mirrors.xmission.com
* base: mirrors.versaweb.com
* extras: mirrors.combinetworks.com
* updates: centos-distro.cavecreek.net
Setting up Install Process
No package proftpd available.
Nothing to do
how do i install ProFTP on my server then?
# cd /tmp/
# wget --passive-ftp ftp://ftp.proftpd.org/distrib/source/proftpd-1.3.2a.tar.gz
NOTE: if you get an error that might look like this:
=> `proftpd-1.3.0a.tar.gz'
Resolving ftp.proftpd.org... 78.47.206.250
Connecting to ftp.proftpd.org|78.47.206.250|:21... connected.
Logging in as anonymous ... Logged in!
==> SYST ... done. ==> PWD ... done.
==> TYPE I ... done. ==> CWD /distrib/source ... done.
==> SIZE proftpd-1.3.0a.tar.gz ... done.
==> PASV ... done. ==> RETR proftpd-1.3.0a.tar.gz ...
No such file `proftpd-1.3.0a.tar.gz'.
open this url with your browser:
ftp://ftp.proftpd.org/distrib/source/
and get the link for the .tar.gz file version you want to install - it may be that the file on this post is old and there is a newer version . after you have downloaded the file with the wget command, you will need to untar it
# tar xvfz proftpd-1*.tar.gz
# cd proftpd-1*/
# ./configure --sysconfdir=/etc
you will get this:
checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking target system type... i686-pc-linux-gnu
checking for gcc... no
checking for cc... no
checking for cl.exe... no
configure: error: no acceptable C compiler found in $PATH
See `config.log' for more details.
# make
# make install
# cd ..
# rm -fr proftpd-1*