Originally posted by: SickBeast
Originally posted by: SleepWalkerX
If you can't fix this problem in Ubuntu, you're in for a world of hurt with Gentoo..
Did you try booting Ubuntu in safe graphics mode? (The second option) This basically uses the vesa driver instead of automatically detecting a driver for your card. Normally the default nv and ati modules give me problems, but vesa works well. Just boot up the Ubuntu livecd and select that option to see if using vesa will work better. If it does I can explain how to correct the issue in your current install.
Awesome, thanks very much. :thumbsup:
I think I'm at 1920x1200 here and would like to switch to VESA mode for the hard drive install. What do I need to do?
Ok open up the terminal and type "sudo gedit /etc/X11/xorg.conf". Scroll down near the bottom and look for Device. It should list your graphics card along with other information. Then look for the Driver entry. In the quotation marks it might list ati or nv or something of that nature. Replace that with vesa (make sure its in the quotation marks still). Then save and the next time the x server starts (like logging out and back in or restarting your computer) it'll run with the vesa driver.
Now this may be a solution, but there are other approaches. Like instead of the vesa driver you can install ati's or nvidia's proprietary driver. They may give more features than the generic vesa driver and might even support higher resolutions.
To install them make sure the universe repository is accessible through apt-get. This can be done by typing "sudo gedit /etc/apt/sources.list", looking down for the line that mentions the universe repository (it'll have universe all the way at the end of the repository) and uncommenting the line (remove the # sign in front of it) then save it. Then update your sources by typing "sudo apt-get update"
Now type "sudo apt-get install xorg-driver-fglrx" if you have an ati card or "sudo apt-get install nvidia-glx" if you have an nvidia one. Then check the xorg.conf file again and look down where the Driver entry was listed. Instead of vesa or what it was before, it needs to be "fglrx" if you installed the proprietary ati drivers or "nvidia" if you installed the proprietary nvidia drivers. Then save and you're done.