Ubuntu – Ubuntu 16.04 – How to start xampp control panel

xampp

How can I start xampp? After the installation there was no shortcut created on the desctop, now I am unable to find it. I am using the latest XAMPP for Linux 5.6.30, 7.0.15 & 7.1.1

The panel started right after the installation, but I am unable to find out how to start the panel after I closed it.

I read in some other topic to execute this command:

sudo /opt/lampp/share/xampp-control-panel/xampp-control-panel 

But this fails with:

 sudo /opt/lampp/share/xampp-control-panel/xampp-control-panel 
Traceback (most recent call last):
  File "xampp-control-panel.py", line 18, in <module>
    import gtk
ImportError: No module named gtk

I also tried to search for xampp, but nothing relevant found:

enter image description here

UPDATE:

/opt/lampp

enter image description here

UPDATE:

I also tried to start xampp from the terminal like this:

root@ubuntu:/opt/lampp$ ./xampp panel

But then the xampp help page shows in the terminal and no GUI is starting:

enter image description here

Best Answer

First of all you need to install gksu with the following command:

sudo apt-get install gksu

Then, run:

gksu gedit /usr/share/applications/xampp-control-panel.desktop

and save the following code in the file.

(You are using 64 bit system so there is no need to change anything, simply do copy paste)

[Desktop Entry]
Encoding=UTF-8
Name=XAMPP Control Panel
Comment=Start and Stop XAMPP
Exec=gksudo /opt/lampp/manager-linux-x64.run
Icon=/opt/lampp/htdocs/favicon.ico
Categories=Application
Type=Application
Terminal=false

Note: For 32 bit xampp type "manager-linux.run" at place of "manager-linux-x64.run"

Run following command in terminal:

sudo apt-get update

Now check applications, its icon has been created.

It will not create icon on desktop, it will create a entry in applications search as shown in the screenshot.

enter image description here

I have checked your directory it is correct, but some folders of xampp are missing. Check mine and compare.

enter image description here


To uninstall your current xampp


Copy paste below commands in terminal and hit enter button.

sudo -i
cd /opt/lampp
sudo ./uninstall 

To install XAMPP


Search `xampp-linux-x64-5.6.30-0-installer.run` in Google and download it. Then run:

chmod +x xampp-linux-x64-5.6.30-0-installer.run
sudo ./xampp-linux-x64-5.6.30-0-installer.run

Check if the following command runs or not:

sudo /opt/lampp/lampp start

also check in this way if it works or not:

enter image description here

Related Question