Quote:
Originally Posted by Indy452 I apologize for being so ignorant my friend but how do I use nsdwrapper? I have never crossed this bridge b4. I went to the links you sent and indeed the card is a USR5411 like the one linked from US robotics but the ndswrapper site is a mystery to me.
Where would y'all suggest I start?
Thanks, Neal | Ndiswrapper is a program that allows you to use the Microsoft Windows drivers for your US Robotics card in Linux. There are graphical front-ends to it, but it is essentially a command-line tool. How you install ndiswrapper really depends on the distribution you're currently using. If it's Debian or Ubuntu, you can install it with: Code: apt-get install ndiswrapper < for Debian >
sudo apt-get install ndiswrapper < for Ubuntu >
Once it's installed, either pop in the driver disc for your card or download the drivers off the US Robotics site and extract them. You're looking for an INF and a SYS file.
Open up a terminal and navigate to where your drivers are. CD (lowercase) will change your directory and LS (lowercase) will list the files in your current directory. If you're ever lost, PWD (also lowercase) will print your current working directory.
Once you're in the directory with the INF and SYS files, run this: Code: ndiswrapper -i nameOfYourInfFile.INF
In Ubuntu you'll need to put sudo in front of that. Now you should see a couple of log messages. Ignore them. Write your configuration to file: Code: ndiswrapper -ma
ndiswrapper -mi
I honestly don't know if both of those are necessary, but they don't hurt. Now restart and see if your card is recognized. |