3

Ubuntu fails to boot. (It was working fine for the last moth.)

Selecting "recovery mode" shows the message:

fb: conflicting fb hw usage inteldrmfb vs EFI VGA - removing generic driver

However, after this message is shown, the system still does not boot.

Jorge Castro
  • 71,754
8128
  • 28,740

3 Answers3

2
  1. Whilst on the GRUB selection screen (where you select your operating system, recovery mode, etc) use the arrow keys to navigate to the normal boot entry, bur rather than pressing enter, press the letter 'e'.
  2. Delete the line gfxmode $linux_gfx_mode
  3. Press F10 to boot

If this doesn't work, try again, but first disconnect all USB devices (other than keyboard!) and extra monitors if you have them.

If you can not reboot, once booted, run the following, so that hopefully you won't have to do the steps above everytime you boot.

sudo grub-install
sudo update-grub
8128
  • 28,740
  • 1
    [This worked for me, but I have seen different solutions on the internet] – 8128 Jul 30 '12 at 07:29
  • 1
    I've tried this, but my system still doesn't boot. Where are the other solutions you mentioned @fluteflute? – danielcooperxyz Jan 31 '13 at 02:29
  • Removing this line did the trick but the change is not saved between reboot even after grub-install and update-grub. I used grub-customizer to edit grub configuration and make the change permanent. – flm Sep 19 '14 at 15:27
1

While trying to install linux mint 17, I stuck in the same problem. In my case there was no gfxmode $linux_gfx_mode line in grub so what I did is to add nomodeset BEFORE quiet splash.

Check that https://askubuntu.com/a/207177/34553 for what nomodeset is.

0

I solved this by editing /etc/grub.d/10_linux

there is an if clause that writes the line:

gfxmode $linux_gfx_mode
pl_rock
  • 11,297