Install XAMPP on Ubuntu
Install XAMPP on Ubuntu
- you need to download XAMPP
if your XAMPP version is 7.4.29-0 (xampp-linux-x64-7.4.29-0-installer.run) Then
2. Go to download location
cd /home/[username]/Downloads
3. To make the latest XAMPP installation package executable, use the command:
sudo chmod 755 xampp-linux-x64-7.3.5.1-installer.run
4. To open XAMPP installer
sudo ./xampp-linux-x64-7.3.5.1-installer.run
5. The terminal does not give any confirmation nor output that you have successfully performed the previous step. However, verify you have executed the permission with the command:
ls –l xampp-linux-x64-7.3.5.1-installer.run
Lunch XAMPP on Ubuntu
- go to location of xampp manager
cd /opt/lampp/
2. lunch xampp manager
sudo ./[package_name]
For Example :
sudo ./xampp-linux-x64-7.3.5.1-installer.run
or
sudo ./manager-linux-x64.run
Uninstall XAMPP
- go to location
cd /opt/lampp
2. uninstall XAMPP by typing the following command:
sudo ./uninstall
3. Finally, remove the specified directory with:
sudo rm –r /opt/lamp
0 Comments