Uninstall xampp from ubuntu using terminal; Through this tutorial, we will learn some easy way to uninstall xampp from linux ubuntu using command line or terminal.
How to Uninstall XAMPP From Ubuntu Terminal OR Command Line
Use the following solutions or ways to uninstall xampp from linux ubuntu system:
- Solution 1 – Using /opt/lampp/uninstall
- Solution 2 – -i cd /opt/lampp ./uninstall
- Solution 3 – rm -r /opt/lampp
Solution 1 – Using /opt/lampp/uninstall
First of all, open terminal or command line and execute the following command on command line to uninstall xampp from linux ubuntu system:
sudo /opt/lampp/uninstall
Solution 2 – -i cd /opt/lampp ./uninstall
If there is a problem with the first solution or does not uninstall xampp from ubuntu. So we can uninstall xampp by executing this command on the command line:
sudo -i cd /opt/lampp ./uninstall
Solution 3 – rm -r /opt/lampp
In this third solution, we can also remove xampp from ubuntu with the command given below:
sudo rm -r /opt/lampp
Conclusion
Through this tutorial, we have learn some easy way to uninstall xampp from linux ubuntu using command line or terminal.