Last active
April 17, 2025 22:22
-
-
Save JrogeT/03ec88946d102f276cae7befdd5fc5ef to your computer and use it in GitHub Desktop.
Ubuntu command lines to install xampp
This file contains hidden or 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 https://linktodownloadxamppxampp-linux-x64-7.1.10-0-installer.run | |
chmod +x xampp-linux-x64-7.1.10-0-installer.run | |
./xampp-linux-x64-7.1.10-0-installer.run | |
sudo ln -s /opt/lampp/bin/php /usr/bin/php | |
#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