Ubuntu Server 14.04 boots into blank screen

221

Solution 1

It sounds like you've installed in BIOS/CSM/legacy mode but your computer is configured to boot in EFI/UEFI mode by default. The easiest solution is to enter your firmware and reconfigure it to boot in BIOS/CSM/legacy mode by default. Unfortunately, I can't give you exact step-by-step instructions because the procedure to make this change varies from one computer to another. You've clearly already activated BIOS/CSM/legacy support, but you may need to change the boot order or disable EFI/UEFI support to get the behavior you want.

Another approach is to install whatever EFI boot loader for Linux appeals to you. Ubuntu uses GRUB2 by default (for both BIOS and EFI), and you can install that by running Boot Repair; however, it's best if you do this from EFI mode, which means you'll need to boot an emergency system into EFI mode or boot your installed system in EFI mode in some other way. You can do the latter with a USB flash drive or CD-R version of my rEFInd boot manager. If you like rEFInd, you could install it to your hard disk via dpkg or the PPA; it would then take over from GRUB. Given your setup, installing any EFI boot loader might require you to create an EFI System Partition (ESP); it's not clear if you've got one.

In the future, be aware that most modern computers support both BIOS-mode booting (via the CSM) and EFI-mode booting. This flexibility is useful in some cases, but it can also lead to problems such as the one you're experiencing. IMHO, it's usually best to disable the CSM (aka legacy-mode support). This will force an EFI-mode boot of the Ubuntu installer, which will then install an EFI-mode version of GRUB. Closing off the BIOS/CSM/legacy boot options makes it less likely that you'll have problems of this sort. The downside is that a lot of tools for creating Ubuntu install disks don't write EFI boot loaders by default; you've got to use either dd (to copy the image file straight to disk) or an EFI-aware tool for creating your boot media. If you decide to re-install Ubuntu, I recommend doing so in EFI mode.

Solution 2

When you boot, you are always taken into the GUI terminal. Unfortunately, this varies from one computer to another.

One way of experimenting with this is try installing the desktop

sudo apt-get install ubuntu-gnome-desktop

If this works, then the problem is that your computer takes you by default to GUI terminal on booting. Press CTRL+ALT+F1. This will take you to command-line terminal.

Solution 3

With 14.04 installed from USB drive I noticed the installer installs GRUB on sda which is the USB (installer) drive. The hard drive is sdb during install. So boot the machine with the USB drive and do a grub repair on the hard drive. Now the system will boot without the USB drive. 16.04 now gives you the option of choosing what drive Grub gets installed to.

Solution 4

Ubuntu server is a non gui OS (only terminal window OS), it doesn't have windows, for your computer you must install Ubuntu desktop.

http://www.ubuntu.com/download/desktop

scroll down and download version 14.10 64 bit version.

Share:
221

Related videos on Youtube

Richard
Author by

Richard

Updated on September 18, 2022

Comments

  • Richard
    Richard over 1 year

    I have two repositories, one in Bitbucket and the other in Github.

    What I want to do is: merge Bitbucket's repository into Github repository while keeping the commit history of Bitbucket's repository. After merging, Github's repo should have its own commit history alongside Bitbucket's repository commit history. I would like to avoid creating a new repository in Github.

    How do I do the above using git?

  • Rod Smith
    Rod Smith about 9 years
    It's possible to add a GUI to Ubuntu Server by installing appropriate packages. Typing apt-get install unity will probably get most of what you need, although I can't promise that. In any event, the boot problems reported by Mini are unrelated to the Ubuntu version, so installing the Desktop version won't really change anything.
  • Danny Harding
    Danny Harding over 6 years
    THANK YOU! I was going to retry the install process, but this got me right into the command line. For those who come after... my screen originally said ‘OS: clean, files: xxx/yyy’, and seemingly no input was allowed. This answer got me to the right place.
  • Richard
    Richard over 4 years
    I see, this works too if I want to merge them both in the opposite direction (i.e. assimilating Github repo to Bitbucket repo), right?
  • Saurabh P Bhandari
    Saurabh P Bhandari over 4 years
    @Richard, yes it should, a bit of caution with the force option though
  • Richard
    Richard over 4 years
    Thank you, I will try the above when I have access to both repos and update you.