vote up 1 vote down star
1

I believe OS GUI takes some machine resources and is not really needed for a web server.
What OS do people install to make a Linux-based web server without GUI?

flag

9 Answers

vote up 10 vote down check

Personally I like Debian the most for servers. The installer gives you the option to install a desktop environment, print server, file server, base system.

For your case you would just select install base system. In that case the installer will just install the base packages to get your server up and running. From that moment you have a rock-solid and very lightweight server and it's trivial to install other packages that you may need via apt-get or aptitude

link|flag
1  
The Debian Stable base install makes for a very nice small installation, and it's easy to add anything missing using aptitude. – Paul Tomblin Oct 28 '08 at 14:56
vote up 8 vote down

Most linux distros can be installed without a GUI. Personally I would recommend Debian for servers, but you'll probably also hear from the Gentoo, Linux from scratch, and Red Hat crowd. Pretty much any distro could handle a web server pretty easily.

link|flag
From what I've seen, Ubuntu Server, Debian, Gentoo, RedHat, CentOS, and one or two that I'm missing are the popular server distros. – Thomas Owens Oct 28 '08 at 14:47
@Thomas: Pretty much the same here, although I haven't encountered any Ubuntu servers just yet. – tloach Oct 28 '08 at 14:50
My hosts use Debian as well :) Although I have also used CentOS in the past – Phill Sacre Oct 28 '08 at 15:05
I personally use two Ubuntu servers because they were fairly idiot-proof to install/maintain. One is my public website, the other my Subversion repository and test deployment box. Any of the distros listed can do the job. – Ken Gentle Oct 28 '08 at 15:07
vote up 6 vote down

Ubuntu server is fairly common I think.

link|flag
It is also a good choice for the inexperienced, as it is quite user-friendly and there is tons of online help. – Liam Oct 28 '08 at 14:59
Ubuntu has a great community, most of their support is applicable to Debian also, so either one would be good. – jsl4980 Oct 28 '08 at 15:13
vote up 2 vote down

We've been using CentOS for our SaaS app for a long time. Just configure the install to not include any GUI (X)

You can fully automate the install starting from a simple kickstart approach, to a full PXE setup.

BTW, the advantage of CentOS, is that it will be supported for a longer time than other distros. I think 7 years at the moment.

link|flag
vote up 2 vote down

Ubuntu server only has CLI.

Most other distributions offer a server or headless install.

link|flag
vote up 2 vote down

The distributions I most often encounter are:

  • Debian
  • Ubuntu Server
  • CentOS

And Fedora.

All of them come with a CLI only setup for server use AFAIK.

link|flag
vote up 2 vote down

I think most Linux servers operate in runlevel 3, which doesn't run a GUI. As part of the install process, just don't install X and you should be all set. I'm not sure what will happen if you try to switch to runlevel 5 (normal windowing system on most systems) on a system that doesn't have a GUI... it may just act like runlevel 3.

I've used SuSE, RedHat, Fedora, CentOS, and Ubuntu for servers. The ones that I set up, I just let have the GUI (in runlevel 5)... it comes in handy when you need to remote in, and with no one logged in the overhead is negligible. The ones that I didn't set up myself I think normally ran in runlevel 3, but I don't know if they had a GUI installed. I prefer the Fedora/CentoOS/RedHat family for any system just because of the massive number of well-maintained packages available for install.

link|flag
1  
"Run level 5 = GUI, run level 3 = no GUI" is a Red Hat-ism. Run levels 0 (shutdown), 1 (single-user mode), and 6 (reboot) are the only ones with universal meaning. Run levels 2-5 can be arranged however the distro/sysadmin likes - in Debian, they are all identical by default. – Dave Sherohman Oct 28 '08 at 16:48
Note this is only true for init based linux. Ubuntu uses a different mechanism (upstart) and always runs at run level=3 – mgb Oct 28 '08 at 22:51
vote up 1 vote down

I don't think Ubunutu Server Edition has a GUI, and in some distros, you can choose what GUI (or lack of GUI) you want.

link|flag
vote up 1 vote down

You might want to check out the Ubuntu Server Edition "JeOS" (Just Enough Operating System). It is a stripped down version of Ubuntu and targeted at virtual appliances, but we've used it for some of our VM servers. The URL is http://www.ubuntu.com/products/whatisubuntu/serveredition/jeos.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.