In this tutorial, i am going to show you some easy methods to uninstall xampp from linux ubuntu using command line or terminal.
How to Uninstall XAMPP From Ubuntu Terminal OR Command Line
Follow the below given methods to uninstall xampp from linux ubuntu system:
- Method 1 – Using /opt/lampp/uninstall
- Method 2 – -i cd /opt/lampp ./uninstall
- Method 3 – rm -r /opt/lampp
Method 1 – Using /opt/lampp/uninstall
First of all, open terminal or command line and run the following command on command line to uninstall xampp from linux ubuntu system:
sudo /opt/lampp/uninstall
Method 2 – -i cd /opt/lampp ./uninstall
If there is a problem with the first solution or does not uninstall xampp from ubuntu. So you can uninstall xampp by executing this command on the command line:
sudo -i cd /opt/lampp ./uninstall
Method 3 – rm -r /opt/lampp
In this third solution, you can also remove xampp from ubuntu with the command given below:
sudo rm -r /opt/lampp
Conclusion
In this tutorial, i have shown to you some easy methods to uninstall xampp from linux ubuntu using command line or terminal.
Be First to Comment