PDA

View Full Version : [SOLVED] lamp server pkg



rpatmullin
April 14th, 2012, 03:46 PM
I am running 11.10 and would like to install apache2, php, mysql, .....

sudo apt-get install [??????}

Can anyone fill in the blank here for me?

Thanks in advance for any input.

RPM

newbie-user
April 14th, 2012, 04:01 PM
To see possible packages for installation:

apt-cache search php
apt-cache search apache
apt-cache search mysql

then

sudo apt-get install php5 apache2 mysql-server-5.1

or whatever packages you decide to install

You could also use tasksel: tasksel install lamp-server

rpatmullin
April 14th, 2012, 04:06 PM
apt-cache search

that is what i needed.

Thanks

CharlesA
April 14th, 2012, 04:07 PM
You could also use tasksel: tasksel install lamp-server

That's what I use, but if I remember right, tasksel isn't installed by default in 11.10.

agillator
April 14th, 2012, 04:13 PM
No, you have to install tasksel first and then lamp-server. All very simple, though, and the best way to do it in my opinion.