How to install the default LAMP stack in Ubuntu 16.04?

First, refresh your package index…
$ sudo apt-get update
… and then install the LAMP stack:
$ sudo apt-get install lamp-server^

Mind the caret (^) at the end.

If occurs: E: Unable to locate package lamp-server

Try to use:

[code]
sudo apt-get install tasksel
sudo tasksel install lamp-server
[/code]

Done!

About LAMP

LAMP stack is a group of open-source software used to get web servers up and running. The acronym stands for Linux, Apache, MySQL, and PHP. Since the virtual private server is already running Ubuntu, the Linux part is taken care of.