Ubuntu – How much does GNOME Desktop Slow Down Ubuntu Server 9.04

Ubuntu

I want to build a high performance web server. I will use Ubuntu Server 9.04.

It would be convenient to install the GNOME desktop, but I could manage by command line only.

How much does the GNOME Desktop slow down the performance of the web server or server in general? I want to determine if the performance hit is worth the desktop.

Also, how does the Webadmin tool impact server performance?

Best Answer

As pointed above, it shouldn't have a big impact on your server performance. I wouldn't install a whole ubuntu-desktop. Lightweight Gnome-core should be definitely enough for a server.

sudo apt-get update

sudo apt-get install xorg gnome-core gdm gnome-media gnome-system-monitor gnome-system-tools gnome-volume-manager gnome-utils gnome-app-install synaptic firefox

Optional:

sudo apt-get install sysv-rc-conf
sysv-rc-conf gives an easy to use interface for managā€ ing "/etc/rc{runlevel}.d/" symlinks
Find 'gdm' (Gnome Display Manager) and uncheck the boxes for runlevels 2 and 3.

Now you will start your desktop by typing

startx

at the console prompt.

Related Topic