Sunday, April 28, 2024
 Popular · Latest · Hot · Upcoming
5
rated 0 times [  5] [ 0]  / answers: 1 / hits: 13733  / 2 Years ago, mon, november 29, 2021, 5:04:15

I have an old Compaq desktop that my children use to access the internet. The kids have repeatedly managed to severely infect the computer with viruses, and this latest round has been a doozy. A friend recently sold me on Ubuntu as a great windows replacement since it is not prone to viruses, so I decided to to give it a go.



I completely overwrote windows with Ubuntu 12.04 to get rid of the viruses, but I can not figure out how to make the wireless network dongle work. I have Googled the topic and tried to go through some of the solutions, but I don't know what I'm doing and I think I may be making things worse. Can someone help me with this? I know NOTHING about Linux and most of the instructions aren't written for someone like me.



Thanks,



lsusb gives the following:



Bus 001 Device 004: ID 050d:615a Belkin Components F7D4101 / F9L1101 802.11abgn Wireless Adapter [Broadcom BCM4323]
Bus 005 Device 002: ID 045e:0040 Microsoft Corp. Wheel Mouse Optical
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub


Thanks for helping me with this chili!


More From » 12.04

 Answers
3

The only known way to get this device working is ndiswrapper. ndiswrapper is a driver wrapper that only works with Windows XP drivers; Vista, 7 or 8 will not work. Please obtain a temporary wired ethernet connection and we'll install the ndiswrapper suite. Open a terminal and do:



sudo apt-get install ndiswrapper-common ndiswrapper-utils-1.9


Since yours is an older machine, I will assume it is a 32-bit machine; confirm:



arch


If it returns 'i686,' then yours is a 32-bit install and we'll proceed. If not, stop and tell us and we'll change a thing or two. Download this file to your desktop: https://dl.dropboxusercontent.com/u/58267392/Broadcom_bcm43xx_USB_32_64bit_v2_amended.zip (from my personal Dropbox). Right-click it and select 'Extract Here.' Back to the terminal:



cd ~/Desktop/Broadcom


Press Tab and the remainder of the file name will fill in automagically; press Enter.



sudo ndiswrapper -i bcmn43xx32.inf


Now check the install:



ndiswrapper -l


It ought to report: bcmn43xx32 : driver installed
device (050D:615A) present



sudo depmod -a
sudo modprobe ndiswrapper


If there are any errors, post them and we'll do our best to sort them out.



In some cases,even though you installed ndiswrapper from Ubuntu sources, it doesn't install properly; the remedy is to download and compile it yourself. Please get a temporary wired ethernet connection and do:



sudo apt-get install linux-headers-generic build-essential


Now download this file to your desktop: http://downloads.sourceforge.net/project/ndiswrapper/stable/ndiswrapper-1.59.tar.gz Right-click it and select 'Extract Here.' Then do:



cd ~/Desktop/ndiswrapper-1.59
make
sudo make install
sudo modprobe ndiswrapper


If the device is not working as expected, look for clues here:



dmesg | grep ndis


If the output is extensive, post the result here and give us the link in your reply: http://paste.ubuntu.com/



To get the module to load on boot, open a terminal and do:



sudo -i
echo ndiswrapper >> /etc/modules
exit


You should be all set.


[#27874] Tuesday, November 30, 2021, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
motivengry

Total Points: 459
Total Questions: 112
Total Answers: 108

Location: Bonaire
Member since Sat, May 1, 2021
3 Years ago
motivengry questions
Tue, Oct 4, 22, 10:02, 2 Years ago
Wed, May 31, 23, 14:33, 12 Months ago
;