how to stop xampp in ubuntu code example
Example 1: remove xampp from ubuntu
// creats an uninstall exec file
sudo chmod +x /opt/lampp/uninstall
// call the exec file to uninstall ( an user interface it will appear )
sudo /opt/lampp/uninstall
Example 2: how to start xampp in ubuntu
sudo /opt/lampp/lampp start
cd /opt/lampp/
ls
sudo ./manager-linux-x64.run
Example 3: restart xampp linux
sudo /opt/lampp/lampp stop
sudo /opt/lampp/lampp start