How to Install and Delete XAMPP on Linux (Ubuntu)
Last updated: 26.10.2025
Views: 479
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:
-
Protecting a Website or Directory with a Password Using .htaccess and .htpasswd
Securing a website or a specific directory with a password is a simple yet effective way to restrict access. This can be done using .htaccess and .htpasswd files in Apach...
-
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...
-
Configuring HTTPS for Nginx
HTTPS stands for Hypertext Transfer Protocol Secure, and it is the secure version of HTTP, the protocol used for communication between your web browser and a website. HTT...
Leave a Reply