PDA

View Full Version : [ubuntu] Upgrading from 6.1 to 8.04



awright
May 26th, 2008, 07:42 PM
Koala model MP915-B(C)

When loading a Ubuntu 8.04 live CD, I get a blank screen and the monitor turns off.

Any suggestions?

Thanks,

Allen

cdtech
May 26th, 2008, 07:44 PM
Why don't you upgrade using the command line?

SkonesMickLoud
May 26th, 2008, 11:11 PM
When you're making that large of a jump in distro's, it's faster and easier to burn your Home directory to a CD/DVD format your disk/partition and install 8.04 fresh.

Otherwise you would have to upgrade to each release separately:

6.1 >> 7.04 >> 7.10 >> 8.04

thomasaaron
May 27th, 2008, 03:33 PM
Also, you will probably need to use "Safe Graphics Mode." for it to work correctly.

cdtech
May 27th, 2008, 04:44 PM
When you're making that large of a jump in distro's, it's faster and easier to burn your Home directory to a CD/DVD format your disk/partition and install 8.04 fresh.

Otherwise you would have to upgrade to each release separately:

6.1 >> 7.04 >> 7.10 >> 8.04

Just saying. I did mine from 6 - 8 on the command line, no problems. I also had a lot of programs installed that I wanted updated as well. I can see your case where you don't have anything worth keeping though.

Good Luck....

schryer
May 29th, 2008, 02:23 PM
I have almost the same problem with the exact same computer MP915-B(S).

I installed from scratch (as I always do) and all graphics give a blank screen. This is also true of the 7.10 distribution.

There is a graphics conflict with this machine. The graphics card is an Intel 915GM/GMS/910GML

This thread explains that there is a problem outputting graphics to the external screen (the MP915-B(S) is essentially a laptop without a screen), so I suspect that the video is working properly for the screen that does not exist)
http://ubuntuforums.org/showthread.php?t=393851

This thread explains that there is a new Intel driver available:
http://ubuntuforums.org/showthread.php?t=113829

However, it is not a simple install (kernel recompile and loads of extra packages needed for compiling the package itself). Furthermore, Intel only shows that it is compatible with Ubuntu 6.10.

It would be nice to have this graphics card work with new versions of Ubuntu, otherwise I may be forced to downgrade again.

Is anyone able to help with this problem?

thomasaaron
May 29th, 2008, 04:17 PM
Did you try installing in Safe Graphics mode?

schryer
May 30th, 2008, 02:47 PM
The install works just fine, even using graphics, the problem occurs when it tries to start the x-server, it just gives a blank screen and no errors. I suspect that this means that it is outputting the graphics to the wrong head of the dual head video card (there is only one on this computer, but the card supports two).

Note: The graphics work fine in the other operating systems installed on this computer.

Any other thoughts?

thomasaaron
May 30th, 2008, 03:27 PM
I think I've seen this before on older chipsets. It ended up being incorrect (or non-existent) refresh rate settings for the monitor in xorg.conf.

If you can boot into recovery mode...

Back up your xorg.conf...

sudo cp /etc/X11/xorg.conf /etc/X11/xorg.conf.backup

Then open it up...
sudo nano /etc/X11/xorg.conf

Change the monitor entry to include the correct refresh rates. Below is a sample listing...


Section "Monitor"
Identifier "Monitor1"
VendorName "DEL"
ModelName "DELL P1110"
HorizSync 29-121
VertRefresh 50-180
EndSection

Then save the file...
Ctrl-X
Y

Then reboot...
sudo reboot now

schryer
June 5th, 2008, 03:12 PM
To make a long story short, changing the monitors section worked.

Thanks for the tip!