How to Install LAMP server in ubuntu through terminal
how to install php , mysql and Apache server LAMP L-linux(probably you already having linux) A-Apache M-mysql p-php Installing LAMP On Ubuntu In this guide I will show you how to install a LAMP system. LAMP stands for Linux, Apache, MySQL, PHP. The guide is intended to help those who have very little knowlegde of using Linux. Install Apache To start off we will install Apache. Open up the Terminal (Applications > Accessories > Terminal). (Ctrl+T also works) Copy/Paste the following line of code into Terminal and then press enter: sudo apt-get install apache2 The Terminal will then ask you for you're password, type it and then press enter. Testing Apache To make sure everything installed correctly we will now test Apache to ensure it is working properly. Open up any web browser and then enter the following into the web address: http://localhost/ if this page opens it means apache is installed and working proper...