|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
Get inside! Sample the range of functionality easily built with JMSL Library for Time Series Data Analysis, Heat Maps, Portfolio Optimization, Monte Carlo Simulation, Stock Price Charting and more. Download Now! |
|
#1
|
|||
|
|||
|
proFTP question
Hello Everyone,
OK im fairly new to linux i was told it is a good operating system for a server well i wanna make a ftp server and a chat server. i downloaded wuftp installed but i want to get rid of that and use proftp how do i uninstall and then install proftp and configure it. |
|
#2
|
||||
|
||||
|
Quote:
the proftp site should be your first port of call, with a wget ftp://ftp.proftpd.org/distrib/sourc...pd-1.2.8.tar.gz to download the latest sources, followed by the usual tar -zxvf proftpd-1.2.8.tar.gz; cd proftpd-1.2.8. Your next job will be to read the INSTALL file and check on any configure options before you build the makefile.. then compile and install in the usual way. I guess it'd be simplest to have the proftpd run over inetd, so you'll have to configure inetd by adding a line in your /etc/inetd.conf . Further to that, the proftp config is extremely flexible and feature-full.. and the config options you choose are totally up to you. christo
__________________
. Spiration channels: Free scripts, programming tutorials and articles Dotcut alerts: Online Press cuttings / news alerts Clearprop: UK microlight school, wiltshire Uk dating: UK safe dating with Topdates About Christo . . |
|
#3
|
|||
|
|||
|
ok if you or anyone else can guide me through dling, installing, and configuring any good ftp server/daemon. I will be forever greatful and i will do anything i can possibly do for you. i get good prices on many computer items through a a friend i know so if you need something i will try and get it
vinny |
|
#4
|
||||
|
||||
|
did you download ftp://ftp.proftpd.org/distrib/sourc...pd-1.2.8.tar.gz ?
If not, then do that first. What difficulties are you having with downloading this file? christo |
|
#5
|
|||
|
|||
|
ok i did that i saved it in /root do i unpack it to /root or somewhere else
|
|
#6
|
||||
|
||||
|
Good lad.. it doesn't matter where you put it really - you can do it anywhere. I usually download my sources into /usr/src . /root is just the root user's home area
now you need to unpack them with tar: tar -zxvf proftp-source-whatever-its-called.tar.gz and it will create a new directory, which you should then CD into. There should be a couple of files in there. One called README and one called INSTALL - have a browse, scratch your head for 15 mins, then post back ![]() christo |
|
#7
|
|||
|
|||
|
ok i was lookin for so docs while waiting and i found one is this a good doc to follow http://lxuser.tripod.com/linux/proftpd.html
|
|
#8
|
||||
|
||||
|
On checking the install docs,
./configure --sysconfdir=/etc would be a sensible option. It's nice to have configs in a useful place christo |
|
#9
|
|||
|
|||
|
ok i did what u said and i followed everything up to where it says to make and make install when i am in the proftpd directory i type make and it says no targets specified and no makefile when i type just make and when i type make install it says no rule to make target install, what do i do
vinny |
|
#10
|
||||
|
||||
|
before you run make, you need to run the autoconf configure script - this sets up the rules and targets for your makefile which will then be created. Run the configure script with the following command:
./configure --prefix=/usr/local/ --sysconfdir=/etc My guess is that you tried to run configure, passing it all the options that are shown in the example.. the one you linked to earlier.. however, you'll probably find that configure didn't complete because of the mod_wrap thing.. and that's why make isn't running... anyway... afterwards, you should see a file called makefile in the same folder.. this contains all sorts of compile time dirctives, which tell the make command how to compile the application.. so you can then compile it with make and then install it by issuing: make install however, you must be logged in as the root user to do that last bit.. christo |
|
#11
|
|||
|
|||
|
ok i did that and i think it worked what do i do from here. should i continue following the doc
Last edited by UFSS : August 8th, 2003 at 01:41 PM. |
|
#12
|
||||
|
||||
|
the doc seems to be okay - don't forget that your config file is in /etc/proftpd.conf, so this is the file you need to edit. Also, in section 9 of that doc, you should opt for option A, to run the proftp daemon over ietd. It'll make it a lot more accessible for you should you want to turn it off/on at any time.
good luck dude ![]() christo |
|
#13
|
|||
|
|||
|
ok ill do that if i have any problems ill post back. is that ok
|
|
#14
|
||||
|
||||
|
no probs at all
christo |
|
#15
|