LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   How to Setup Apache2-2.0.58, PHP-5.1.4 and MySql-5.0.22 on fedora core 4? (https://www.linuxquestions.org/questions/linux-newbie-8/how-to-setup-apache2-2-0-58-php-5-1-4-and-mysql-5-0-22-on-fedora-core-4-a-480822/)

ni2_qt 09-06-2006 01:13 AM

How to Setup Apache2-2.0.58, PHP-5.1.4 and MySql-5.0.22 on fedora core 4?
 
How to Setup Apache2-2.0.58, PHP-5.1.4 and MySql-5.0.22 on fedora core 4? Pls give me steps on this. tnx!

rylan76 09-07-2006 05:27 AM

Well, first you'll need to uncompress each package and then compile it.

Uncompression can usually be done by running

tar zxvf filename.tar.gz

if you got a "tarball" (i. e. a file with the .tar.gz extension)

or

if you got a bzipped file (i. a. file witht he tar.bz2 extension)

bunzip2 filename.tar.bz2
tar xvf filename.tar

Once the files have been extracted, change to the directory created and do

./configure

(note that you can place parameters after configure do

./configure --help

to see the parameters)

Then do

make
su
(enter your too password)
make install
exit

This should then compile and install the packages.


All times are GMT -5. The time now is 09:44 PM.