3

I am also having issues with my graphics driver.

Graphics: Intel® 945GM x86/MMX/SSE2
OS type: 32-bit

The screen gets corrupted with lines all over it and the only way to fix it is to force a refresh by moving some windows around with the mouse. The issue started after I upgraded from 15.4 to 15.10, which appears to be how it went for Alejandro Lázaro and jit, but the solution that jit tried did not work for me; which involved editing the following file with the contents listed:

/usr/share/X11/xorg.conf.d/20-intel.conf
Section "Device"
   Identifier  "Intel Graphics"
   Driver      "intel"
   Option      "AccelMethod"  "uxa"
EndSection
andrew.46
  • 38,003
  • 27
  • 156
  • 232

1 Answers1

0

Try this

sudo add-apt-repository ppa:ubuntu-x-swat/x-updates
sudo apt-get install xserver-xorg-video-intel

Enter Command

sudo gedit /etc/X11/xorg.conf 

This command will create the file and open it for you. Insert the text below exactly as it appears and click save.

Section "Device" 
Identifier "Card0" 
Driver "intel" 
Option "AccelMethod" "sna" 
EndSection 

and then

sudo reboot
Ashu
  • 3,966