Skip to content

Instantly share code, notes, and snippets.

@LinuxFintech
Created December 31, 2020 09:05
Show Gist options
  • Save LinuxFintech/9a50c578c93616f245c9847ea70225ba to your computer and use it in GitHub Desktop.
Save LinuxFintech/9a50c578c93616f245c9847ea70225ba to your computer and use it in GitHub Desktop.
Completely Uninstall LAMP Ubuntu 20.04 LTS
#!/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
sudo rm -rf /etc/mysql
sudo apt autoremove
sudo apt -y autoclean
sudo apt -y clean
sudo apt update
sudo reboot
# Cheers 🐧
#completely #uninstall #LAMP #Ubuntu 20.04 LTS
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment