sudo apt-get install php5
Category Archives: Linux
Command to check the status of MySql server – Ubuntu linux
service mysql status EX:service mysql status mysql start/running, process 1300
Command to restart MySQL – Ubuntu Linux
sudo /etc/init.d/mysql restart
Command to stop MySQL – Ubuntu Linux
sudo /etc/init.d/mysql stop
Command to start MySQL – Ubuntu Linux
sudo /etc/init.d/mysql start
Command to install MySQL – Ubuntu Linux
sudo apt-get install mysql-server
Command to stop apache – ubuntu Linux
sudo /etc/init.d/apache2 stop
Command to start apache – ubuntu Linux
sudo /etc/init.d/apache2 start
Command to restart apache – ubuntu Linux
sudo /etc/init.d/apache2 restart
Command to install apache – Ubuntu linux
sudo apt-get install apache2