How to Install and Delete XAMPP on Linux (Ubuntu)
Last updated: 26.10.2025
Views: 438
XAMPP is a web development server build. This software is cross-platform, there are versions for Linux, Windows and Mac. The build includes Apache, PHP, MariaDB, phpMyAdmin.
The project is constantly evolving. You can download XAMPP at www.apachefriends.org/download.html
Installation
After downloading the package, let’s set the rights.
sudo chmod 755 xampp-linux-*-installer.run
Start installation.
sudo ./xampp-linux-*-installer.run
You can see the process of installing XAMPP in Ubuntu in the video.
Some instructions for work
Start, reboot and stop
sudo /opt/lampp/lampp start sudo /opt/lampp/lampp restart sudo /opt/lampp/lampp stop
Launch GUI
sudo /opt/lampp/manager-linux-x64.run
How to delete XAMPP on Ubuntu
Run uninstallation
sudo /opt/lampp/uninstall
After uninstalling, some files still remain. Let’s delete what’s left.
sudo rm -r /opt/lampp
You can watch the process of uninstalling XAMPP in Ubuntu in the video.
Similar posts:
-
Making a Query in Salesforce Using SSJS
When working with Salesforce Marketing Cloud, you may need to send data to an external service or fetch content dynamically based on request parameters. Server-Side JavaS...
-
Cheat sheet for work with Git
Git is an indispensable tool for managing versions of code in development. It allows you to track changes in the project, return to previous versions and work effectively...
-
How to Fix Chrome “Pending Authentication” Error When Debugging Android via USB on Windows
Debugging an Android website through USB using Google Chrome on a Windows laptop may sometimes stop working unexpectedly. I recently encountered a problem where USB debug...
Leave a Reply