Monitor says "unsupported input" when starting up for the first time.

Asked by Josh Olsen

I just installed Ubuntu 11.10 64bit, at the end of the installation it restarted. However when it began to boot up my screen poped up a message that said "Input not supported" I looked up my monitor, and it seems this message is due to the input being at a higher resolution that the monitor (HP w17e) can handle.

My guess is that Ubuntu has it's resolution maxed out, so it causes this issue. How can I change the resolution without actually booting up? It does this just after the manufacturers splash screen. Is there a way to access the files and alter the settings?

Or am I just totally off base and this is the result of something else?

Question information

Language:
English Edit question
Status:
Solved
For:
Ubuntu xorg Edit question
Assignee:
No assignee Edit question
Solved by:
Chris
Solved:
Last query:
Last reply:
Revision history for this message
Best Chris (fabricator4) said :
#1

Yes that's the problem exactly.

Try <ctrl><alt><-> and <ctrl><alt><+> to change the resolution.
You can then open the display settings and set the appropriate resolution for you monitor. The problem occurs because the EDID data being sent from the monitor suggests a higher resolution than it is actually capable of.

If the problem is in the grub boot loader, you might be able to force it to a lower resolution.

First press <ctrl><alt><F2> after the machine has apparently booted. This should get you to a text console
Log in with your username and password. Execute the following command:

sudo nano /etc/default/grub

Under the line that reads:
#GRUB_GFXMODE=640x480

add one that reads:
GRUB_GFXMODE=800x600

This is a reasonable resolution for the grub screen. Save the file by pressing <ctrl><o> and then exit the editor by pressing <ctrl><x>

You now have to get grub to use the new config file so you'll need to execute the following command:

sudo update-grub

Once it has finished you can reboot:

sudo reboot

If all is well you should be able to see the grub screen correctly. If it bypasses grub you can get there anyway by holding down the shift key just before it starts booting.

If you get the grub screen but when you start Ubuntu you get the resolution problem again, try the <ctrl><alt><-> trick again to change resolutions.

If this still doesn't work, boot in recovery mode, start X in safe mode, and see if you can change the resolution in monitor configuration that way.

If all this doesn't work we may have to write a few lines into an Xorg config file to force it to use a particular resolution. (I have this problem allways because I run two machines through a KVM switch which doesn't pass any EDID data to the computer at all.)

Chris.

Revision history for this message
Josh Olsen (zeel02) said :
#2

None of that worked. the <ctrl><alt><-> thing has no effect, I waited like 5 minutes after that for it to totally boot and tried <ctr><alt><-> which did nothing.

Recovery mode did nothing, for a second there was a flashing curser, then the screen goes black. ~20 seconds later it reboots.

So what is that other solution? I can get Ubuntu to run from the disk.

Revision history for this message
actionparsnip (andrew-woodhead666) said :
#3

Hold shift and press E on the kernel, you can then remove the boot options:

quiet splash

and add the boot option:

nomodeset

Then hit ENTER to continue the boot.

What GPU do you use?

Revision history for this message
Josh Olsen (zeel02) said :
#4

Define: kernel?

Not sure where you want me to hit shift+e

GPU: NVIDIA Gforce 6150SE (integrated GPU on motherboard)

Revision history for this message
actionparsnip (andrew-woodhead666) said :
#5

add the bootoption:

nouveau.blacklist=1

Should make it ok

Revision history for this message
Josh Olsen (zeel02) said :
#6

I don't know how to do that.

Revision history for this message
actionparsnip (andrew-woodhead666) said :
#7

Nobody is born knowing either, a simple websearch would have found you this:

https://help.ubuntu.com/community/BootOptions

If you try and find your own solutions based on what is given here, you not only help yourself more, making you more autonomous, but you also get fixed up faster as you are not sat waiting for someone to fill you in.

Revision history for this message
Josh Olsen (zeel02) said :
#8

Okay I figured out how to use the live CD to change the grub file as Chris said, but if I run sudo update-grub I just get an error, I assume because it is attempting to do it on the live CD, and that is impossible. How can I do it on the actual installation? When I can't open a terminal? I edited the files that are on the actual installation, but how can I run the update command.

There is no point at which I can see anything on the real installation. And none of the numerous hotkeys that have been mentioned make anything appear.

Revision history for this message
Josh Olsen (zeel02) said :
#9

Never mind, I found what I was looking for "chroot". Now it it seems to be working. Thanks for the help.

Revision history for this message
Josh Olsen (zeel02) said :
#10

Thanks Chris, that solved my question.