03-11-2015, 08:17 PM
(03-11-2015, 05:38 PM)Hardcoretexan link Wrote: batman@BatComputer:~$ inxi -Fxz
System: Host: BatComputer Kernel: 3.13.0-24-generic x86_64 (64 bit, gcc: 4.8.2)
Desktop: Xfce 4.11.8 (Gtk 2.24.23) Distro: Ubuntu 14.04 trusty
Machine: System: Dell product: Inspiron 1525
Mobo: Dell model: 0U990C Bios: Dell version: A16 date: 10/16/2008
CPU: Dual core Intel Core2 Duo CPU T5800 (-MCP-) cache: 2048 KB flags: (lm nx sse sse2 sse3 ssse3) bmips: 7979.86
Clock Speeds: 1: 2000.00 MHz 2: 1600.00 MHz
Graphics: Card: Intel Mobile GM965/GL960 Integrated Graphics Controller (primary) bus-ID: 00:02.0
X.Org: 1.15.1 drivers: fbdev,vesa,intel Resolution: [email protected]
GLX Renderer: Gallium 0.4 on llvmpipe (LLVM 3.4, 128 bits) GLX Version: 2.1 Mesa 10.1.3 Direct Rendering: Yes
I'm not sure what is causing the reboot problem, but it appears that the system is not loading the correct graphics driver for your Intel card. Let's see if we can force it to load correct driver and see if that solves problem.
Boot into system however you can, then open a terminal. Enter the following command:
Code:
gksu leafpad /etc/X11/xorg.conf
Enter your password when asked for it, then your text editor (leafpad) will open up the file /etc/X11/xorg.conf. I'm assuming that the file did not already exist, so you will probably see nothing but a blank page when it's opened. That's fine. Just add the following lines (including the indented formatting) as shown into the leafpad editor for that file.
Code:
Section "Device"
Identifier "My device"
Driver "intel"
EndSection
Now save the file (File -> Save) and close the text editor. Close the terminal and all other open programs (if any), then reboot the computer.
If we're lucky, that might have been the problem. Confirm after reboot that the Intel driver now shows for the graphics card by entering this command in a terminal:
Code:
inxi -Gx
Try Linux Beginner Search Engine for answers to Linux questions.