Install LAMP on Ubuntu 11.10
Let’s see how we can install LAMP – Linux, Apache, MySQL & PHP on Ubuntu 11.10!
Install Apache
Open terminal and execute the following command:
sudo apt-get install apache2 |
Install MySQL
Open terminal and execute the following command:
sudo apt-get install mysql-server |
Install PHP
Open terminal and execute the following command:
sudo apt-get install php5 libapache2-mod-php5 php5-mysql |
Restart Apache:
sudo /etc/init.d/apache2 restart |
Install phpMyAdmin
Open terminal and execute the following command:
sudo apt-get install phpmyadmin |