Setting Wireless Network in Ubuntu Feisty 7.04
Thursday, September 6th, 2007Recently I installed Ubuntu Feisty 7.04 on my Dell Latitude D600 laptop, but still had to do some work to get wireless working.
For those interested, here are the steps involved:
- Determine your Wireless card.
- Disable BCM43XX Driver
- Instal ndiswrapper. This enables wireless network cards on Linux by implementing the Windows kernel and NDIS APIs and dynamically linking the vendor’s Windows drivers
- Get your windows driver
- Extract driver to MYDRIVER directory
- Install the driver
- Verify driver, hardware
- configure ndsiwrapper
lspci | grep -i network
02:03.0 Network controller: Broadcom Corporation BCM4306 802.11b/g Wireless LAN Controller (rev 03)
sudo -s
echo blacklist bcm43xx >> /etc/modprobe.d/blacklist
exit
sudo apt-get install ndiswrapper-utils
wget http://ftp.us.dell.com/network/R151517.EXE
unzip -a R151517.EXE
cd MYDRIVER
sudo ndiswrapper -i bcmwl5.inf
sudo ndiswrapper -l
sudo ndiswrapper -m
sudo modprobe ndiswrapper
sudo -s
echo ndiswrapper >> /etc/modules
exit
- Reboot now!
- Test wireless
sudo iwlist scanningIf this is your lucky day, you should have your wireless up and ready.