Add to Favorites
Hosting Discussion
 

forgot password?


Reply


Old
  Post #1 (permalink)   09-02-2005, 09:20 AM
HD Newbie
 
Join Date: Jul 2005
Posts: 26

Status: afcbob is offline
Hello i got a linux VPS but am need to no how to install a ftp on it so i can upload things on it. i an new to this and just learn all the commands.Is there away for me to install on the server as i can't get to it.
 
 
 


Old
  Post #2 (permalink)   09-02-2005, 10:45 AM
Data Center Specialist
 
Join Date: Aug 2005
Location: United Kingdom
Posts: 842

Status: Marks is offline
What Linux OS are you using? Fedora, Debian, Red Hat, Suse etc??

Regards,
 
 
 


Old
  Post #3 (permalink)   09-02-2005, 10:58 AM
HD Newbie
 
Join Date: Jul 2005
Posts: 26

Status: afcbob is offline
Its Centors - 3
 
 
 


Old
  Post #4 (permalink)   09-02-2005, 11:06 AM
Data Center Specialist
 
Join Date: Aug 2005
Location: United Kingdom
Posts: 842

Status: Marks is offline
Is there a package for pure-ftp on CentOS anyone?

try doing this:
yum install pure-ftpd

Regards,
Mark S.
 
 
 


Old
  Post #5 (permalink)   09-02-2005, 11:22 AM
HD Newbie
 
Join Date: Jul 2005
Posts: 26

Status: afcbob is offline
i don't think so i got this after i put it in.

yum install pure-ftpd
Gathering header information file(s) from server(s)
Server: CentOS-3 - Addons
Server: CentOS-3 - Base
Server: CentOS-3 - Extras
Server: CentOS-3 - Updates
Finding updated packages
Downloading needed headers
Cannot find a package matching pure-ftpd
No actions to take
 
 
 


Old
  Post #6 (permalink)   09-02-2005, 11:39 AM
Data Center Specialist
 
Join Date: Aug 2005
Location: United Kingdom
Posts: 842

Status: Marks is offline
Hmm ok.. you will have to do it manually in SSH try this:

cd /usr/local/
wget ftp://ftp.pureftpd.org/pub/pure-ftpd...-1.0.20.tar.gz
tar xzf pure-ftpd-1.0.20.tar.gz
cd pure-ftpd-1.0.20/
./configure --with-everything --with-virtualchroot --without-banner --without-humor --enable-osx --with-tls
make install-strip

#Next is to choose which Mode you want:
#xinetd Mode (I prefer this one)

cd /etc/xinetd.d/
cp -p ftp ftp.default
pico ftp

Code:
service ftp 
{ 
        disable = no 
        socket_type     = stream 
        wait            = no 
        user            = root 
        server          = /usr/local/sbin/pure-ftpd 
        server_args     = -A -E -p 40000:50000 -c 5 -C 1 -I 5 -T 25 -u 1 
        groups          = yes 
        flags           = REUSE 
}
/etc/init.d/xinetd stop
/etc/init.d/xinetd start

It now should work.
Hopefully that should help,

Regards,
Mark S.
 
 
 


Old
  Post #7 (permalink)   09-02-2005, 12:03 PM
HD Newbie
 
Join Date: Jul 2005
Posts: 26

Status: afcbob is offline
when i put it in i get this

Code:
cd/usr/local/
No such file or directoy
 
 
 


Old
  Post #8 (permalink)   09-02-2005, 12:10 PM
Data Center Specialist
 
Join Date: Aug 2005
Location: United Kingdom
Posts: 842

Status: Marks is offline
There is a space after cd

Regards,
 
 
 


Old
  Post #9 (permalink)   09-02-2005, 12:23 PM
HD Newbie
 
Join Date: Jul 2005
Posts: 26

Status: afcbob is offline
ok when i put that in it just goes to next line so i put in

and i get this

--19:21:19-- ftp://ftp.pureftpd.org/pub/pure-ftp...d-1.0.20.tar.gz
=> `pure-ftp...d-1.0.20.tar.gz'
Resolving ftp.pureftpd.org... 213.206.75.252, 130.225.247.87
Connecting to ftp.pureftpd.org[213.206.75.252]:21... connected.
Logging in as anonymous ... Logged in!
==> SYST ... done. ==> PWD ... done.
==> TYPE I ... done. ==> CWD /pub ... done.
==> PASV ... done. ==> RETR pure-ftp...d-1.0.20.tar.gz ...
No such file `pure-ftp...d-1.0.20.tar.gz'.
 
 
 


Old
  Post #10 (permalink)   09-02-2005, 01:26 PM
Data Center Specialist
 
Join Date: Aug 2005
Location: United Kingdom
Posts: 842

Status: Marks is offline
It must be my bad spelling day today
wget ftp://ftp.pureftpd.org/pub/pure-ftpd...-1.0.20.tar.gz

Try that.
Regards,
 
 
 


Old
  Post #11 (permalink)   09-02-2005, 01:41 PM
HD Newbie
 
Join Date: Jul 2005
Posts: 26

Status: afcbob is offline
thts the same one is it not looks the same and i also tried it as well the same happens
 
 
 


Old
  Post #12 (permalink)   09-02-2005, 03:05 PM
Data Center Specialist
 
Join Date: Aug 2005
Location: United Kingdom
Posts: 842

Status: Marks is offline
Oh i know what's happenend vBulletin has shorteed the URL and added ..... open the URL in a new window copy that URL and paste it into SSH.

Regards,
 
 
 


Old
  Post #13 (permalink)   09-02-2005, 03:31 PM
HD Newbie
 
Join Date: Jul 2005
Posts: 26

Status: afcbob is offline
ok i get this error now

[root@server2 root]# tar xzf pure-ftpd-1.0.20.tar.gz
[root@server2 root]# cd pure-ftpd-1.0.20/
[root@server2 pure-ftpd-1.0.20]# ./configure --with-everything --with-virtualchroot --without-banner --without-humor --enable-osx --with-tls
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking for a BSD-compatible install... /usr/bin/install -c
checking for ranlib... :
checking for gcc... no
checking for cc... no
checking for cc... no
checking for cl... no
configure: error: no acceptable C compiler found in $PATH
See `config.log' for more details.

Thanks for all this help by the way.
 
 
 


Old
  Post #14 (permalink)   09-13-2005, 10:06 AM
HD Newbie
 
Join Date: Jul 2005
Posts: 26

Status: afcbob is offline
Hello can some help me i'm getting this error.

[root@host2design pure-ftpd-1.0.20]# ./configure
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking for a BSD-compatible install... /usr/bin/install -c
checking for ranlib... :
checking for gcc... no
checking for cc... no
checking for cc... no
checking for cl... no
configure: error: no acceptable C compiler found in $PATH
See `config.log' for more details.
 
 
 


Old
  Post #15 (permalink)   09-14-2005, 02:23 AM
HD Newbie
 
Join Date: Jul 2005
Posts: 26

Status: afcbob is offline
Can some one please help me with this
 
 
 
Reply
Previous Thread Next Thread


Thread Tools

New Post New Post   Old Post Old Post
Posting Rules:
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On