Difference between revisions of "Intel WiFi Link 5100/5300 WLAN controller"

From ThinkWiki
Jump to: navigation, search
(sidux 2008-03)
(sidux 2008-03)
Line 40: Line 40:
  
 
= sidux 2008-03 =
 
= sidux 2008-03 =
Setup on 2008-11-22.
+
Setup on: 2008-11-22
  
# '''Hardware Installation'''
+
== Hardware Installation ==
## Update to 2.6.27 Kernel <br />{{cmdroot|apt-get update && apt-get install linux-image-2.6-sidux-686 linux-headers-2.6-sidux-686}}
+
# Update to 2.6.27 Kernel <br />{{cmdroot|apt-get update && apt-get install linux-image-2.6-sidux-686 linux-headers-2.6-sidux-686}}
## Get the Firmware microcode from the Intel Website <br />{{cmduser|wget http://intellinuxwireless.org/iwlwifi/downloads/iwlwifi-5000-ucode-5.4.A.11.tar.gz}} and unpack it <br />{{cmduser|tar -zxvf iwlwifi-5000-ucode-5.4.A.11.tar.gz}}
+
# Get the Firmware microcode from the Intel Website <br />{{cmduser|wget http://intellinuxwireless.org/iwlwifi/downloads/iwlwifi-5000-ucode-5.4.A.11.tar.gz}} and unpack it <br />{{cmduser|tar -zxvf iwlwifi-5000-ucode-5.4.A.11.tar.gz}}
## Copy the Microcode into the firmware dirctory <br />{{path|/lib/firmware/}} <br />for example by <br />{{cmdroot|cp iwlwifi-5000-1.ucode /lib/firmware/}}
+
# Copy the Microcode into the firmware dirctory <br />{{path|/lib/firmware/}} <br />for example by <br />{{cmdroot|cp iwlwifi-5000-1.ucode /lib/firmware/}}
## Reload the Kernel Module <br />{{cmdroot|modprobe -r iwlagn && modprobe iwlagn}}
+
# Reload the Kernel Module <br />{{cmdroot|modprobe -r iwlagn && modprobe iwlagn}}
## Done.
+
# Done.
# '''Test of Hardware Installation'''
+
== Test of Hardware Installation ==
## Interface should be in the list now:<br />{{cmduser|nicinfo}}
+
# Interface should be in the list now:<br />{{cmduser|nicinfo}}
## Scan for Networks, this should work now:<br />{{cmdroot|iwlist scanning}}
+
# Scan for Networks, this should work now:<br />{{cmdroot|iwlist scanning}}
# '''Establish a WLAN link with ''ceni'''''
+
== Usage Example: Establish a WLAN link with ''ceni'' ==
### Update ''ceni'' with ''wpagui'' {{cmdroot|apt-get update && apt-get install ceni wpagui}}   
+
# Update ''ceni'' with ''wpagui'' {{cmdroot|apt-get update && apt-get install ceni wpagui}}   
### Start ''ceni'' {{cmdroot|ceni}}   
+
# Start ''ceni'' {{cmdroot|ceni}}   
### Configure Wlan Interface within ''ceni''
+
# Configure Wlan Interface within ''ceni''
### Use ... and then ''scan'' or ''roam''.
+
# Use ... and then ''scan'' or ''roam''.
### With ''scan'' you should see wireless networks and be able to connect to them.
+
# With ''scan'' you should see wireless networks and be able to connect to them.
# '''Further Usefull commands'''
+
== Additional Notes ==
## {{cmduser|dmesg}}
+
# {{cmduser|dmesg}}

Revision as of 16:13, 22 November 2008

download linux kernel 2.6.26

download linux kernel prepatch 2.6.27-rc5

(http://kernel.org/pub/linux/kernel/v2.6/testing/patch-2.6.27-rc5.bz2)

make menuconfig

Device Drivers => Network device surppot => wireless LAN

CONFIG_WLAN_80211=y

CONFIG_IWLWIFI=y

CONFIG_IWLCORE=y

CONFIG_IWLWIFI_LEDS=y

CONFIG_IWLWIFI_RFKILL=y

CONFIG_IWLWIFI_DEBUG=y

CONFIG_IWLAGN=y

CONFIG_IWLAGN_SPECTRUM_MEASUREMENT=y

CONFIG_IWLAGN_LEDS=y

CONFIG_IWL5000=y

make && make modules_install

cp arch/i386/boot/bzImage /boot/kernel-2.6.27-rc5

install wpa_supplicant

now enjoy your new wireless card :)

alternative if you want to use your stock < 2.6.27 Kernel

http://ubuntu-virginia.ubuntuforums.org/showpost.php?p=5710211&postcount=4

sidux 2008-03

Setup on: 2008-11-22

Hardware Installation

  1. Update to 2.6.27 Kernel
    # apt-get update && apt-get install linux-image-2.6-sidux-686 linux-headers-2.6-sidux-686
  2. Get the Firmware microcode from the Intel Website
    $ wget http://intellinuxwireless.org/iwlwifi/downloads/iwlwifi-5000-ucode-5.4.A.11.tar.gz and unpack it
    $ tar -zxvf iwlwifi-5000-ucode-5.4.A.11.tar.gz
  3. Copy the Microcode into the firmware dirctory
    /lib/firmware/
    for example by
    # cp iwlwifi-5000-1.ucode /lib/firmware/
  4. Reload the Kernel Module
    # modprobe -r iwlagn && modprobe iwlagn
  5. Done.

Test of Hardware Installation

  1. Interface should be in the list now:
    $ nicinfo
  2. Scan for Networks, this should work now:
    # iwlist scanning

Usage Example: Establish a WLAN link with ceni

  1. Update ceni with wpagui # apt-get update && apt-get install ceni wpagui
  2. Start ceni # ceni
  3. Configure Wlan Interface within ceni
  4. Use ... and then scan or roam.
  5. With scan you should see wireless networks and be able to connect to them.

Additional Notes

  1. $ dmesg