1

I'm currently running Ubuntu 11.10 on a PC which can no longer handle the graphics (it's a dinosaur of sorts), and I now want to turn it into a home file server. To do so, I wanted to replace Ubuntu with Ubuntu Server, the command line-only one. How do I do this?

Jules
  • 377
  • Before you try to install Ubuntu 12.04 LTS server edition you my want to verify thatyour very old CPU is capable of running a PAE kernel, or 64-bit kernel. If both is not the case you may need to install 32-bit 10.04 LTS server first and then upgrade to 12.04 to get a non-pae kernel. Alternatively, you may consider to install Lubuntu or Xubuntu that still ship with a non-pae kernel for old machines. – Takkat Jun 02 '12 at 20:00
  • I don't think Lubuntu or Xubuntu come in server editions, though, which is what he's looking for. – Marty Fried Jun 02 '12 at 23:28

1 Answers1

4

You can use Ubuntu as a server, and you can install Gnome, KDE, etc onto Ubuntu server. The difference is in the mix of applications installed. So, you could use your existing system as a server without running the GUI shell, or you can install a different shell if you want a lightweight GUI, such as xfce or lxde. I have an old Ubuntu 10.x system that I use as a server, and I rarely even log in directly, so it sits at the login prompt. I mainly use ssh to log in, and if I need to log in directly, I have a choice between a virtual terminal or a gui shell.

If you really want the "official" Ubuntu Server, you will need to install it. If you go that route, you might as well install a LTS release. 12.04 is the best choice, and Ubuntu has a good guide for setting up the server with LAMP apps, wikimedia if desired, etc.

Edit: Default Kernel Difference As stated in the comment below, there are some differences in the default kernel for server and desktop editions. There are certain optimizations that are turned on or off for Kernel vs desktop, although that information doesn't seem to be very prominent in the main documentation that I could find. There are differences in IRQ timing and scheduling, where the desktop kernel is optimized more for smoothness in the GUI, but is not good for higher-volume server systems. But, it seems that 12.04 has stopped using different kernels for the two.

As stated below, the 12.04 32-bit version evidently comes with only the pae version of the kernel (pae is what allows 32-bit computers to access more than 3.2GB of RAM). If your computer is very, very ancient, or a Pentium M machinge, it may not support pae. On my system, they can be interchanged, but if your computer doesn't support pae, then there may be some issue with this. I haven't see that mentioned in the documentation so far.

If you do want to install a server, the installation is different. It uses a non-GUI install instead of the Live CD.

Marty Fried
  • 18,466
  • 2
    You might want to add something about how Ubuntu Server releases before 12.04 LTS have a different kernel installed by default than desktop releases (as this was another major difference between Server and desktop Ubuntu systems). – Eliah Kagan Jun 02 '12 at 19:51
  • OK, thanks for that info; I'll add something. I reread the Server FAQ, and see the mention of different default kernels, something that never really registered in previous reading. But it doesn't really look like a major difference, except I can see it might be problematic to someone who doesn't expect it. :) – Marty Fried Jun 02 '12 at 22:46
  • Well, it makes any instructions that assume one kernel package name either not work or produce incorrect results (possibly introducing subtle problems), so it's important that the information about the generic vs. server kernels be widely promulgated when discussing difference between desktop and Server installations of Ubuntu (as several pre-12.04 server releases are supported). The main differences relate to balancing raw performance against interface responsiveness. – Eliah Kagan Jun 03 '12 at 00:13
  • 1
    On systems that have both (i.e., all Ubuntu releases prior to 12.04), the desktop kernel is provided by linux-image-generic (or linux-image-generic-pae) and the server kernel is provided by linux-image-server, so by installing (and, if you wish, removing) packages, you can switch between kernels--you don't have to reinstall Ubuntu to switch between the desktop and server kernels. – Eliah Kagan Jun 03 '12 at 00:18