Difference between revisions of "HP/Compaq Team"

From FreekiWiki
Jump to navigation Jump to search
(Added low-graphics mode fix for 6910p)
m (→‎6910p: Fixed formatting)
Line 13: Line 13:
 
:When booting off a standard Ubuntu 10.04 image, the Ubuntu splash screen appears and then displays a Low-graphics mode prompt.
 
:When booting off a standard Ubuntu 10.04 image, the Ubuntu splash screen appears and then displays a Low-graphics mode prompt.
 
;Solution
 
;Solution
:This occurs because the Xserver is, for whatever reason, expecting an nVidia driver despite not having an nVidia GPU (you can confirm this with the following command: <code>lspci -k | grep -iA2 vga</code>).  In this case, there was a file <code>/etc/X11/xorg.conf</code> that explicitly had an nvidia driver listed.  Changing the file to ask for an intel driver didn't work, so just deleting the <code>xorg.conf</code> and <code>xorg.conf.fallback</code> files forced the Xserver to initialize a new configuration file based on the hardware in the system.
+
:This occurs because the Xserver is, for whatever reason, expecting an nVidia driver despite not having an nVidia GPU.  You can confirm this with the following command:  
 +
  lspci -k | grep -iA2 vga
 +
:In this case, there was a file <code>/etc/X11/xorg.conf</code> that explicitly had an nvidia driver listed.  Changing the file to ask for an intel driver didn't work, so just deleting the <code>xorg.conf</code> and <code>xorg.conf.fallback</code> files forced the Xserver to initialize a new configuration file based on the hardware in the system.
 
:To summarize, run the following command to solve this issue:
 
:To summarize, run the following command to solve this issue:
 
   sudo rm /etc/X11/xorg.conf* ; sudo reboot
 
   sudo rm /etc/X11/xorg.conf* ; sudo reboot

Revision as of 16:58, 15 November 2012

HP Support


Compaq Support

Intel PRO/Wireless 2200BG and 2915ABG using the lpw2200 driver

The indicator light for the Wifi on/off switch does not come on.This confuses quite a few customers (who have turned off their Wifi but do not know how to verify that they have done so). The solution can be found at the following link With thanks to Levi for the fix.

BIOS passwords on nc series

6910p

Issue
When booting off a standard Ubuntu 10.04 image, the Ubuntu splash screen appears and then displays a Low-graphics mode prompt.
Solution
This occurs because the Xserver is, for whatever reason, expecting an nVidia driver despite not having an nVidia GPU. You can confirm this with the following command:
 lspci -k | grep -iA2 vga
In this case, there was a file /etc/X11/xorg.conf that explicitly had an nvidia driver listed. Changing the file to ask for an intel driver didn't work, so just deleting the xorg.conf and xorg.conf.fallback files forced the Xserver to initialize a new configuration file based on the hardware in the system.
To summarize, run the following command to solve this issue:
 sudo rm /etc/X11/xorg.conf* ; sudo reboot