Results 1 to 10 of 95

Thread: Crash & black screen (Graphics problem?)

Threaded View

  1. #12
    Join Date
    Mar 2008
    Location
    Earth, possibly
    Beans
    106

    Re: Crash & black screen (Graphics problem?)

    Okay, I've found a workaround for this problem (suggested on the bug) that seems to be working. According to the information on the bug that soro2005 linked to, using xorg.conf to override the automatic detection settings and switch from the 'intel' driver (which is used by default - the gui tool is incorrect) to the older 'i810' driver will get rid of the problem, as the bug only exists in the 'intel' driver.

    So first, I backed up my existing xorg.conf file:
    Code:
    sudo cp /etc/X11/xorg.conf /etc/X11/xorg.conf.backup
    Then I opened the file with
    Code:
    sudo gedit /etc/X11/xorg.conf
    And scrolled to the following section:
    Code:
    Section "Device"
    	Identifier	"Configured Video Device"
    EndSection
    I added one line of text (shown in bold):
    Code:
    Section "Device"
    	Identifier	"Configured Video Device"
    	Driver		"i810"
    EndSection
    And then saved it and restarted.

    I tested the new configuration with repeated logouts, shutdowns, and restarts, and have yet to encounter the crash (haven't tried video playback yet), so I'm relatively sure this will work. However, I'm not sure if there are any major issues with the 'i810' driver that anybody else might have - you could always run "sudo dpkg-reconfigure -phigh xserver-xorg" to reset things if anything blows up.
    Last edited by Theo148; May 29th, 2008 at 10:32 AM. Reason: quick correction

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •