0

I installed Ubuntu-12.04-x86_64 server. I need a GUI to install mysql db. What is the simplest way? I still want to preserve my server. I don't want to make it to run as a desktop. All I need is a GUI.

Thanks for your help.

Prasad
  • 13
  • 3

2 Answers2

1

I run an Ubuntu Server myself, and various times I feel the need of a GUI. This has however proved itself to be a reflection of my own fright.

If you just take the time to learn one texteditor (such as nano), you will learn a lot more in the process. You can install mysql by using sudo apt-get install mysql-server, and then you edit the configuration to your needs. What I usually do next is that I use some kind of graphical tool (such as Mysql Workbench) on my client PC to connect to the mysql server and create databases. https://help.ubuntu.com/12.04/serverguide/mysql.html

If you however want a graphical interface on the server, you could use a webgui such as Webmin. This way, you probably save more resources than if you would install the ubuntu desktop, and when the graphical interface is not needed you can stop the service to release RAM if you are worried about resources. http://www.webmin.com

Zeelia
  • 121
  • 6
0

You simply have to run sudo apt-get install compiz && sudo apt-get install unity in the command line. Make sure you have an internet connection or else this will not work.

gabemai
  • 550