1

I'm brand new to Linux and am having a very hard time troubleshooting this problem. My screen is freezing frequently .

Here is my machine specs:

Intel Core 2 duo E8400 3Ghz,
5Gb RAM,
Ubuntu 14.04 x64
Intel Graphics

Output of sudo lshw -c video as requested by Fabby

user.dz
  • 48,105
Abdou Tahiri
  • 65
  • 1
  • 9

1 Answers1

6

Perhaps X server may choose incorrect driver for your computer.

If the current version of Xorg that you use supports your computer, you need to try manually change the driver via a file, /etc/X11/xorg.conf.d/xorg.conf. This file describes Xorg server configurations.

Please create the xorg.conf file with following contents.

Section "Device"
    Identifier "Configured Video Device"
    Driver "vesa"
EndSection

And then you can reboot so check your screen again.

If it's failed, you can modify "vesa" to "fbdev" or "intel" at xorg.conf and then retry.

Why do I recommend vesa, fbdev, intel? Because they are compatible drivers for the Intel graphics card.

In other case, X driver may be updated. So you may need to run

apt-get update
apt-get upgrade

And then reboot again. Also, you can check that your PC is certificated by Ubuntu Desktop with following url. http://www.ubuntu.com/certification/desktop/ At there, you can lookup for your PC.

Note:

If you use vesa and fbdev, direct dendering may be disabled.

If you still cannot solve your problem, please visit

https://launchpad.net/xorg

and report this problem as a bug. Xorg developers will offer more technical support.

As normally, the X run on tty7. If X crashed or could not reply with black screen, you can switch to the tty1~6 with Ctrl + Alt + 1~6. And there are many text editors in Ubuntu like nano, vim and so on.

Also there are some solutions that may help you due to visit following urls. http://ubuntuforums.org/showthread.php?t=935756 https://wiki.ubuntu.com/X/Troubleshooting/Freeze

xiaodongjie
  • 2,824
  • 1
  • 18
  • 37