Difference between revisions of "Laptop Graphics"

From FreekiWiki
Jump to navigation Jump to search
Line 24: Line 24:
 
{|class="wikitable" style="text-align:left" font-size="90%" border=".05" cellpadding=".4" width="35%  valign="top"  
 
{|class="wikitable" style="text-align:left" font-size="90%" border=".05" cellpadding=".4" width="35%  valign="top"  
 
|style="text-align:left"|
 
|style="text-align:left"|
'''How to fix the graphic issues (blanking screen in Dell Inspiron 1100 series in Lucid Lynx (10.04): This is also useful as a start point for similar problems with other laptops with the intel 845/855GM graphics cards.'''
+
'''How to fix the "Black Screen of Death" on i845, i855 and some (but not all) other 8xx graphics chips. GTT Incoherency Patch.''' (e.g. Dell Inspiron 1100.<br> Both [[Media:Dell-fix.sh]] and the step by step instructions do the same thing.
 +
|style="text-align:left" width="65%"|
 +
===Easy way===
 
*Download  this file [[Media:Dell-fix.sh]]
 
*Download  this file [[Media:Dell-fix.sh]]
 
*make it executable by running <code>chmod +x Dell-fix.sh</code> (make sure you are in the same directory as you downloaded it to).
 
*make it executable by running <code>chmod +x Dell-fix.sh</code> (make sure you are in the same directory as you downloaded it to).
 
* run it as <code>sudo bash Dell-fix.sh</code>
 
* run it as <code>sudo bash Dell-fix.sh</code>
|}
 
  
 
+
===Step by Step===
if <code>uname -r</code> returns
+
====Install the 855gm PPA and the patched kernel.====
2.6.37-graphics2+12-generic
 
you do not need to install this fix
 
 
 
{|class="wikitable" style="text-align:left" font-size="90%" border=".05" cellpadding=".4" width="35%  valign="top"
 
|style="text-align:left"|
 
'''How to fix the "Black Screen of Death" on i845, i855 and some (but not all) other 8xx graphics chips. GTT Incoherency Patch.<br> N.B. this does the same thing as the dell-fix.sh script, above, though it lacks a few of the things the script does. It is probably easier just to run the script.'''
 
|style="text-align:left" width="65%"|===Install the 855gm PPA and the patched kernel.===  
 
  
 
* sudo add-apt-repository ppa:brian-rogers/graphics-fixes-testing
 
* sudo add-apt-repository ppa:brian-rogers/graphics-fixes-testing
Line 45: Line 39:
 
* sudo apt-get install
 
* sudo apt-get install
  
===If that doesn't work go on to the next commands.===
+
====If that doesn't work go on to the next commands.====
  
*sudo add-apt-repository ppa:glasen/intel-driver  
+
* sudo add-apt-repository ppa:glasen/intel-driver  
 
*sudo apt-get update && sudo apt-get upgrade
 
*sudo apt-get update && sudo apt-get upgrade
  
===If that doesn't work go on to the next commands.===
+
====If that doesn't work go on to the next commands.====
 +
 
 +
* sudo add-apt-repository ppa:glasen/855gm-fix
 +
* sudo apt-get update && sudo apt-get install dkms 855gm-fix-dkms
 +
 
 +
====Additional Steps====
  
sudo add-apt-repository ppa:glasen/855gm-fix
+
*(create /etc/X11/x.org)
sudo apt-get update && sudo apt-get install dkms 855gm-fix-dkms
+
*Add the following lines
 +
  Section "Module"
 +
          Disable "dri"
 +
          Disable "glx"
 +
  EndSection
  
  
 
[[Category:Laptops]][[Category:Tech support]]
 
[[Category:Laptops]][[Category:Tech support]]

Revision as of 10:57, 20 April 2011

Graphics Resource Links for Laptops:

* Understanding Notebook Video - How to Choose the Proper Display on a Notebook

How to fix the 3 part screen in Dell Inspiron 8000 series in Hardy: This is also useful as a start point for similar problems with other laptops.

Open the terminal
  • Run sudo displayconfig-gtk
  • Select the correct model for Screen 1 (usually the system manufacturer + native resolution)
  • Set the resolution to the monitor's native resolution
  • Click the OK button
  • Log out
  • Press Ctrl + Alt + F1 to switch to a virtual terminal
  • Run sudo nano /etc/X11/xorg.conf
  • Find the Virtual line under Section "Screen"
  • Change the virtual resolution to the native resolution
  • Press Ctrl + O to save, and Ctrl + X to exit.
  • Run sudo /etc/init.d/gdm restart to restart GDM


How to fix the "Black Screen of Death" on i845, i855 and some (but not all) other 8xx graphics chips. GTT Incoherency Patch. (e.g. Dell Inspiron 1100.
Both Media:Dell-fix.sh and the step by step instructions do the same thing.

Easy way

  • Download this file Media:Dell-fix.sh
  • make it executable by running chmod +x Dell-fix.sh (make sure you are in the same directory as you downloaded it to).
  • run it as sudo bash Dell-fix.sh

Step by Step

Install the 855gm PPA and the patched kernel.

  • sudo add-apt-repository ppa:brian-rogers/graphics-fixes-testing
  • sudo apt-get update
  • sudo apt-get install linux-headers-2.6.37-graphics2+12 linux-headers-2.6.37-graphics2+12-generic linux-image-2.6.37-graphics2+12-generic
  • sudo apt-get install

If that doesn't work go on to the next commands.

  • sudo add-apt-repository ppa:glasen/intel-driver
  • sudo apt-get update && sudo apt-get upgrade

If that doesn't work go on to the next commands.

  • sudo add-apt-repository ppa:glasen/855gm-fix
  • sudo apt-get update && sudo apt-get install dkms 855gm-fix-dkms

Additional Steps

  • (create /etc/X11/x.org)
  • Add the following lines
 Section "Module"
         Disable "dri"
         Disable "glx"
 EndSection