Comment 68 for bug 367442

Revision history for this message
Martin Olsson (mnemo) wrote : Re: [regression] Jaunty and Intrepid screen xserver won't start

Honestly, from that first xorg.log it looks like stuff it working. There is nothing printed into "dmesg" when you're doing these attempts is it?

To debug further, can you please throw in these options on by one into the device section of your xorg.conf and see if you can find a config that boots properly:
Option "AccelMethod" "XAA"
Option "NoAccel" "true"
Option "ExaNoComposite" "true"
(if you want to read about these options you can open "man openchrome")

For example to test with noaccel option you'd use something roughly equivalent to this /etc/X11/xorg.conf:

Section "Device"
        Identifier "Configured Video Device"
        Option "NoAccel" "true"
EndSection

Section "Monitor"
        Identifier "Configured Monitor"
EndSection

Section "Screen"
        Identifier "Default Screen"
        Monitor "Configured Monitor"
        Device "Configured Video Device"
EndSection