# # Original File # ============= # http://www.Linux-Sec.net/Wireless/Install-HowTo/madwifi.txt # http://www.Linux-Sec.net/Wireless/Install-HowTo/NetGear.WG311.Install.txt ( this file ) # # # 10-Dec-03 amo Install Wireless PCI card ( Netgear WQG311 -- 802.11g ) # 19-Dec-03 amo Allow for 2.6.0 vs 2.4.23 kernels # 19-Apr-04 amo Renamed wl.install.sh to NetGear.WG311.Install.RedHat.txt # # # First stop the network # ----------------------- /etc/rc.d/init.d/network stop # # # # Allow for linux-2.6.0 vs linux-2.4.23 kernels # --------------------------------------------- # if [ `uname -r` = "2.6.0" ]; then # rmmod ath_pci.ko rmmod ath_hal.ko rmmod wlan.ko # WLAN="/lib/modules/`uname -r`/net/wlan.ko" HAL="/lib/modules/`uname -r`/net/ath_hal.ko" PCI="/lib/modules/`uname -r`/net/ath_pci.ko" # else # rmmod ath_pci.o rmmod ath_hal.o rmmod wlan.o # WLAN="/lib/modules/`uname -r`/net/wlan.o" HAL="/lib/modules/`uname -r`/net/ath_hal.o" PCI="/lib/modules/`uname -r`/net/ath_pci.o" # fi # # # # Add the wireless drivers # ------------------------ insmod $WLAN # insmod $HAL # Warning: loading ath_hal/ath_hal.o will taint the kernel: non-GPL license - Proprietary # See http://www.tux.org/lkml/#export-tainted for information about tainted modules # Module ath_hal loaded, with warnings # insmod $PCI # ath0: 11b rates: 1Mbps 2Mbps 5.5Mbps 11Mbps # ath0: 11g rates: 1Mbps 2Mbps 5.5Mbps 11Mbps 6Mbps 9Mbps 12Mbps 18Mbps 24Mbps 36Mbps 48Mbps 54Mbps # ath0: 802.11 address: 00:09:5b:89:48:97 # # # Restart with the wirless network ( ath0 ) # -------------------------------- /etc/rc.d/init.d/network start # # ifconfig -v # ------------ # ath0 # eth0 # lo # # lsmod # -------- # Module Size Used by Tainted: P # ath_pci 30736 1 # ath_hal 109792 1 [ath_pci] # wlan 37056 1 [ath_pci] # # # End of file