HP Compaq 530

From Gentoo Linux Wiki

(Redirected from HARDWARE HP Compaq 530)
Jump to: navigation, search


Please format this article according to the guidelines and Wikification suggestions, then remove this notice {{Wikify}} from the article


[edit] Output of lspci

00:00.0 Host bridge: Intel Corporation Unknown device 27ac (rev 03)

00:02.0 VGA compatible controller: Intel Corporation Unknown device 27ae (rev 03)

00:02.1 Display controller: Intel Corporation Mobile 945GM/GMS, 943/940GML Express Integrated Graphics Controller (rev 03)

00:1b.0 Audio device: Intel Corporation 82801G (ICH7 Family) High Definition Audio Controller (rev 01)

00:1c.0 PCI bridge: Intel Corporation 82801G (ICH7 Family) PCI Express Port 1 (rev 01)

00:1c.1 PCI bridge: Intel Corporation 82801G (ICH7 Family) PCI Express Port 2 (rev 01)

00:1d.0 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #1 (rev 01)

00:1d.7 USB Controller: Intel Corporation 82801G (ICH7 Family) USB2 EHCI Controller (rev 01)

00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev e1)

00:1f.0 ISA bridge: Intel Corporation 82801GBM (ICH7-M) LPC Interface Bridge (rev 01)

00:1f.1 IDE interface: Intel Corporation 82801G (ICH7 Family) IDE Controller (rev 01)

00:1f.2 SATA controller: Intel Corporation 82801GBM/GHM (ICH7 Family) SATA AHCI Controller (rev 01)

02:06.0 CardBus bridge: ENE Technology Inc CB1410 Cardbus Controller (rev 01)

02:08.0 Ethernet controller: Intel Corporation 82562ET/EZ/GT/GZ - PRO/100 VE (LOM) Ethernet Controller Mobile (rev 01)

10:00.0 Network controller: Intel Corporation PRO/Wireless 3945ABG Network Connection (rev 02)


wireless adapter intel 3945ABG works well with net-wireless/iwl3945-ucode and kernel-2.6.25

example of config for wireless conection with WPA-PSK:

/etc/wpa_supplicant/wpa_supplicant.conf:

ctrl_interface=/var/run/wpa_supplicant

ctrl_interface_group=users

network={

       ssid="my_network"
       scan_ssid=1
       psk="secret_passkey"
       key_mgmt=WPA-PSK
       priority=10

}

/etc/conf.d/net:

config_wlan0=("dhcp")

modules_wlan0=("!iwconfig" "wpa_supplicant" "!ifplugd")

wpa_supplicant_wlan0=("-Dwext")

dhcp_wlan0="nonis nontp"

preup() {

   if [ ${IFACE} == "wlan0" ]; then
       ifconfig wlan0 up > /dev/null 2 >&1
       iwlist wlan0 scanning > /dev/null 2 >&1
   fi

}

postdown () {

   if [ ${IFACE} == "wlan0" ]; then
       einfo "Disabling Wireless"
       ifconfig ${IFACE} down
   fi

}

after start may be error: /etc/init.d/net.wlan0 start

* Starting wlan0
*   Running preup function

Invalid scanning option [2] [ ok ]

*   Starting wpa_supplicant on wlan0 ...

ioctl[SIOCSIWAUTH]: Operation not supported [ ok ]th param 4 value 0x0 -

*   Starting wpa_cli on wlan0 ...                                        [ ok ]
*     Backgrounding ...

need wait about 10-20 seconds and wlan0 begin work

Personal tools