Answers for "completely remove xampp ubuntu 20.04"

0

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
Posted by: Guest on March-12-2021
6

install xampp ubuntu 20.04

// download the xampp from this link
https://www.apachefriends.org/download.html

// navigate to Download folder
cd ~/Download

// make the run file exec
chmod +x xampp-linux-(xampp version)-installer.run 

// run the exec file with sudo
sudo ./xampp-linux-(xampp version)-installer.run
Posted by: Guest on March-12-2021

Code answers related to "completely remove xampp ubuntu 20.04"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language