How to Install and Delete XAMPP on Linux (Ubuntu)
Last updated: 26.10.2025
Views: 304
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:
-
How to Remove WWW From a Website Address
When setting up a website, one of the small but important technical details is choosing a preferred domain version — with or without “www”. From an SEO perspective, this ...
-
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...
-
How to Run (Deploy) a Single Page Application (SPA) on Shared Hosting
Building modern websites with Vue or React has become the standard practice in web development. However, when you try to deploy a Single Page Application (SPA) to a regul...
Leave a Reply