-3

Is it possible to install Ubuntu 14.04 Server Edition as a native windows application like the desktop edition (using wubi)?

Please guide, as I'm going to use server edition for the first time.

Thanks!

joy-cs
  • 101

1 Answers1

0

If you want to install Ubuntu server in a dual-boot setup with Windows, but aren't sure how to do that, I recommend that you

  1. first install Ubuntu Desktop and pay particular attention to How can I install Ubuntu without removing Windows?,

  2. then re-configure the system to resemble the server installation (source):

    apt-get update
    apt-get install tasksel
    tasksel remove ubuntu-desktop
    tasksel install server
    apt-get install linux-server linux-image-server
    apt-get purge lightdm
    apt-get autoremove
    

    In /etc/default/grub set

    GRUB_TIMEOUT=5
    GRUB_CMDLINE_LINUX_DEFAULT=""
    GRUB_TERMINAL=console
    GRUB_HIDDEN_TIMEOUT=
    

    and finally run update-grub.

David Foerster
  • 36,264
  • 56
  • 94
  • 147