Dell TrueMobile wireless cards are based on Broadcom Wireless chipsets. This includes the following wireless cards:
Dell recommends using the ndiswrapper driver framework for TrueMobile wireless cards. While not officially tested or supported by Dell, we have received feedback from many customers that this does indeed work.
NOTE:' More general information about ndiswrapper on Ubuntu can be found [here].
From a command line, run the following command:
sudo apt-get install ndiswrapper-common ndiswrapper-utils ndisgtk
Run the following command at a command prompt:
echo 'blacklist bcm43xx' | sudo tee -a /etc/modprobe.d/blacklist
Go to support.dell.com and download the appropriate Windows driver for your TrueMobile card (should be something like R123456.EXE). Save this in the /tmp directory
cd into the /tmp directory, and unzip the Windows driver package
cd /tmp
unzip R123456.EXE (or whatever the name of the download is)
Run the following command to load the driver
sudo ndiswrapper -i /tmp/DRIVER/bcmwl5.inf
Verify that the driver has been loaded
ndiswrapper -l
The output of this command should look like the following if it is loaded correctly
Installed ndis drivers:
{name of driver} driver present, hardware present
or
{name of driver} : driver installed
device ({Chipset ID}) present
You now need to load the ndiswrapper module. Complete the following steps at a command prompt:
sudo depmod -a
sudo modprobe ndiswrapper
You may also want to check for error messages:
tail /var/log/messages
Assuming there are no errors, you should then try to bring up the network connection.
If you are using the network manager applet to configure Wireless Network, ndiswrapper will not be started by the network manager alias setting. You must configure your system to load the ndiswrapper module at system startup. To do this, edit /etc/modules file to add an entry for ndiswrapper at the end of the file.
gksudo gedit /etc/modules
then add the word ndiswrapper to the end of this file and save it.
Your wireless should now work on subsequent reboots.
转发至微博
转发至微博
评论