Results 1 to 10 of 20
I recently installed the ndiswrapper utility to use my Windows wireless
driver. The program asks for the .inf driver file. The driver listed in device
manager is athr.sys which the ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 08-07-2009 #1Just Joined!
- Join Date
- Aug 2009
- Posts
- 18
Atheros AR5B91 Wireless Config
I recently installed the ndiswrapper utility to use my Windows wireless
driver. The program asks for the .inf driver file. The driver listed in device
manager is athr.sys which the utility will not accept as valid. I have searched
the whole drive and can find nothing. Any ideas ???Last edited by waterhead; 08-07-2009 at 11:41 PM.
- 08-07-2009 #2
Most atheros cards are well supported by linux. You shouldn't need to use ndiswrapper at all.
Please read this thread and post the requested info so we can confirm the chipset and find out what drivers are loading.
I think you need either the ath5k or ath9k module.
- 08-08-2009 #3Just Joined!
- Join Date
- Aug 2009
- Posts
- 18
- 08-09-2009 #4
NDISwrapper is good for wireless cards with no Linux drivers. There is no need to use it, because your wireless uses the Linux driver ath9k:
Linux Kernel Driver Database: CONFIG_ATH9K: Atheros 802.11n wireless cards support
This driver is available in kernels 2.6.27 and newer. Since you have a 2.6.24 kernel, you will have to manually install the driver. A wired internet connection is needed to do this. It is part of the compat-wireless package, which contains many Linux wireless drivers.
First, you need to install a few things.
Then you need to download the driver source. Go to this site, and click the link to download the compat-wireless-old package.Code:sudo apt-get install linux-source linux-headers build-essential
compat-wireless-old - Linux Wireless
Download it to your home folder (not your Desktop), then you can unpack it by opening a terminal and entering this command.
This creates a folder named compat-wireless-2.6-old. Direct the terminal to that folder with this command.Code:tar jxvf compat-wireless-old.tar.bz2
You then build the driver modules with this command.Code:cd compat-wireless-2.6-old
This may take a little while, as there are quite a few modules to build. When it is done, you install the modules with this command. You need root permissions, so the sudo prefix is used.Code:make
Give your password, and it will install all of the modules. When done, run this command.Code:sudo make install
Now reboot the system. It may take the system a bit before it realizes it now has a driver for the wireless. You may even want to reboot a second time. I recommend also removing NDISwrapper, as it can only interfere with the Linux driver. If you are have trouble with the new Linux driver, remove NDISwrapper and reboot.Code:sudo make unload
Paul
Please do not send Private Messages to me with requests for help. I will not reply.
- 08-10-2009 #5Just Joined!
- Join Date
- Aug 2009
- Posts
- 18
ar5b91 saga
Great instructions. I got all the way to "sudo make install" in the
the terminal and it would not input my sudo password. Cursor
just blinks but will not accept keystrokes.
Ideas?
- 08-10-2009 #6
When you use sudo, it asks for your password. When you enter the password, it remains hidden (security feature?). Just hit the Enter key after you have typed in the password.
Paul
Please do not send Private Messages to me with requests for help. I will not reply.
- 08-10-2009 #7Just Joined!
- Join Date
- Aug 2009
- Posts
- 18
Got the sudo make install command to work. Have rebooted several times
and system still doesn't seem to recognize the driver. The network app
shows wired connection but nothing for wireless.
- 08-10-2009 #8
Is the ath9k module loading? Post the output of these commands.
Code:lsmod
Code:ifconfig
Code:iwconfig
Paul
Please do not send Private Messages to me with requests for help. I will not reply.
- 08-10-2009 #9Just Joined!
- Join Date
- Aug 2009
- Posts
- 18
ar5b91
ifconfig.txt
lsmod.txt
iwconfig wouldn't attach - stated no extensions
also, i removed ndis before make file
- 08-10-2009 #10
I still see NDISwrapper loading. Try manually removing the ndiswrapper module, and loading the ath9k module.
Code:sudo modprobe -r ndiswrapper
See if iwconfig will now list a wireless interface.Code:sudo modprobe ath9k
Paul
Please do not send Private Messages to me with requests for help. I will not reply.


Reply With Quote
