2

I have installed LAMP on linux by sudo apt-get install lamp-server^ And everything work fine.

I just wonder if I can have a control panel like XAMPP or WAMP in order to turn on or restart the local server quickly. And even it has some config of Apache or Mysql (like WAMP, which I love) because I don't like working with Terminal

So anyone know that? Thank you for your help!

0xh8h
  • 3,271
  • 4
  • 34
  • 55

2 Answers2

1

You can try Xampp control panel GUI in Ubuntu. Also, take a look to Add GUI xampp control panel on Ubuntu.

Mihai8
  • 3,113
  • 1
  • 21
  • 31
  • I went to 2 links above but it's for XAMPP, but I install LAMP so I don't have this : /opt/lampp/share/xampp-control-panel/xampp-control-panel.py. So how can I apply it for LAMP? – 0xh8h Aug 13 '13 at 03:27
1

With XAMPP/LAMP 5.6.3-0, I didn't have to add anything new. There is a manager-linux*.run file in your /opt/lampp folder, which can be used to open the control panel using the terminal. You just need to run this command:

sudo /opt/lampp/manager-linux-x64.run

For 32-bit Ubuntu/Linux machines, this must do:

sudo /opt/lampp/manager-linux*.run

Check your lampp folder; I am not entirely sure what it'd be for 32-bit machines.

Keval
  • 3,389
  • 2
  • 24
  • 41