Last active
March 1, 2024 06:25
-
-
Save banarsiamin/2370939631c6246a65630075834f4f1f to your computer and use it in GitHub Desktop.
Instal ubuntu-xampp
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
sudo -s | |
apt update | |
apt upgrade | |
wget chmod +x xampp-linux-x64-8.2.12-0-installer.run | |
chmod +x xampp-linux-x64-8.2.12-0-installer.run | |
./xampp-linux-x64-8.2.12-0-installer.run | |
#In order to start all the xampp services, we need to run the following command in the terminal: | |
/opt/lampp/xampp start | |
/opt/lampp/xampp stop | |
/opt/lampp/xampp restart | |
#Start Apache only: | |
/opt/lampp/xampp startapache | |
/opt/lampp/xampp stopapache | |
#Start Proftpd FTP server only: | |
/opt/lampp/xampp startftp | |
/opt/lampp/xampp stopftp | |
#Start MySQL Database server only: | |
/opt/lampp/xampp startmysql | |
/opt/lampp/xampp stopmysql | |
#Xampp help | |
/opt/lampp/xampp --help | |
#Xampp uninstall | |
/opt/lampp/uninstall |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment