Hello,
I had similar problem when the screen would go blank but i would get vertical grey lines.
I have the following graphics card:
"Intel Corporation 82845G/GL[Brookdale-G]/GE Chipset Integrated Graphics Device (rev 01)"
To find out your graphics card type the following in termial:
apparently the driver which was in use "i915" was not working well with the xorg so i switched to "vesa" driver and since i have not ever had a problem.
Code:
sudo gedit /etc/X11/xorg.conf
The above command will show your current xorg.conf file, you want to change the Driver "whatever" to Driver "vesa"
or if its blank then copy/paste the following, save and reboot:
Code:
Section "Monitor"
Identifier "Monitor0"
VendorName "Unknown"
ModelName "Unknown"
HorizSync 30.0 - 110.0
VertRefresh 50.0 - 150.0
Option "DPMS"
EndSection
Section "Device"
Identifier "Device0"
Driver "vesa"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Device0"
Monitor "Monitor0"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1280x1024" "1024x768" "800x600" "640x480"
EndSubSection
EndSection
Bookmarks