Last active
November 5, 2024 16:34
-
-
Save UbuntuEvangelist/9d115b4ca95c330ef6d2dd42f6c133c9 to your computer and use it in GitHub Desktop.
Completely Uninstall LAMP Ubuntu
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
HIRE Me For Your Project Support :) | |
Telegram: https://t.me/LinuxGun | |
#!/bin/bash | |
# Completely Remove Apache Ubuntu | |
service apache2 stop | |
apt purge apache2 apache2-utils apache2.2-bin | |
apt remove apache2.* | |
apt autoremove | |
whereis apache2 | |
rm -rf /etc/apache2 | |
# This will Completely remove PHP version Ubuntu. Type your php version before run below command. I am using php 8.0.x change yours... | |
php --version | |
apt purge `dpkg -l | grep php8.0| awk '{print $2}' |tr "\n" " "` | |
apt purge php8.* | |
apt autoremove --purge | |
whereis php | |
rm -rf /etc/php | |
apt update -y | |
apt upgrade -y | |
php --version | |
# This will completely remove MYSql | |
service mysql stop | |
apt remove --purge *mysql\* | |
apt remove --purge mysql-server mysql-client mysql-common -y | |
rm -rf /etc/mysql | |
apt autoremove | |
apt autoclean | |
reboot |
It's very useful, thank you!
Thx so much for this information... I was not able to uninstall an old version of php. And Thanks to this manual I coud uninstall it.
Thx so much for this information... I was not able to uninstall an old version of php. And Thanks to this manual I coud uninstall it.
Thanks
Desde cali colombia has hecho que una distro muy cuidada no se pierda gracias por tu conocimiento
Thanks...
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks sir