2

I installed Ubuntu Server. It loads just fine to the grub selection screen but after making a selection, for some reason the monitor just goes into power saving mode and never wakes back up. I have to restart. The monitor cables are not loose or anything. Is there a way to fix this?

amye
  • 47

1 Answers1

2

amye, press 'e' to edit the grub command line (the one that starts with 'linux') and add the word 'nomodeset' to the end of the line. If that doesn't work, also remove 'quiet' from the word list. That should at least give you some extra clues as to when it is getting stuck.

If that works, you may want to add this line to /etc/default/grub

GRUB_CMDLINE_EXTRA="nomodeset"

And then run

sudo update-grub

To make it permanent.

SpamapS
  • 19,820
  • Thanks SpamapS! I added nomodeset and now its working perfectly :) – amye Aug 06 '11 at 05:38
  • Note, as a follow up, that you may want to file a bug in grub so that your hardware will be blacklisted in future releases (or so that somebody can fix it :) – SpamapS Oct 12 '11 at 20:55