how to install lamp in ubuntu code example

Example 1: how to uninstall lamp server in ubuntu 18.04

#!/bin/bash

# This will remove Apache
sudo service apache2 stop
sudo apt-get purge apache2 apache2-utils apache2.2-bin apache2-common
sudo apt remove apache2.*
sudo apt-get autoremove
whereis apache2
sudo rm -rf /etc/apache2

# This will remove PHP
sudo apt-get purge `dpkg -l | grep php7.2| awk '{print $2}' |tr "\n" " "`
sudo apt-get purge php7.*
sudo apt-get autoremove --purge
whereis php
sudo rm -rf /etc/php

# This will remove MYSql
sudo service mysql stop
sudo apt-get remove --purge *mysql\*
sudo apt-get remove --purge mysql-server mysql-client mysql-common -y
rm -rf /etc/mysql
sudo apt-get autoremove
sudo apt-get autoclean


#https://www.fiverr.com/tamerjarrar
sudo reboot

Example 2: ubuntu server lamp installation

sudo tasksel install lamp-server

Example 3: install apache2 mysql php ubuntu 18.04

sudo ufw app list

Example 4: install apache2 mysql php ubuntu 18.04

sudo ufw allow in "Apache Full"
#allow fill stack