LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   package installation problem (https://www.linuxquestions.org/questions/linux-software-2/package-installation-problem-17468/)

billwoody 04-01-2002 10:36 AM

package installation problem
 
Installing djbdns and ucspi-tcp (I am in way over my head) on RH7 I ran into a problem.
The installation directions stated as follows;


Unpack the djbdns package:

gunzip djbdns-1.05.tar
tar -xf djbdns-1.05.tar
cd djbdns-1.05

Compile the djbdns programs:

make


As root, install the djbdns programs under /usr/local:

make setup check




My question regards the wording of the last instruction:

"...under /usr/local:"

Does that mean I am to do something different to send the programs to /usr/local? Or is the instruction, "make setup check" supposed to install the packages there?


tia

AutoBot 04-01-2002 11:00 AM

Two things, first you can use:

tar xvzf djbdns-1.05.tar.gz

and it will remove one of the steps of opening archives.

Next before you compile do this:

./configure --prefix=/usr/local

Then do:

make

Next:

make install

And if you want to clean up do:

make clean

billwoody 04-01-2002 12:07 PM

root@ns1 djbdns-1.05] # ./configure --prefix=/usr/local
bash: ./configure: no such file or directory
root@...

Uh-oh

Mara 04-01-2002 01:20 PM

There is no configure script, but the path to install will be in Makefile. But be careful editing it!


All times are GMT -5. The time now is 04:25 AM.