|
Note: You need root privledge to complete this
tutorial.
You need to download the Windows driver. This
is because NetGear hasn't released Linux Drivers for this model, and
the NDISWrapper “wraps” the Windows driver so it is able to be run
in Linux.
Unlike Ubuntu, Linspire Five-0 has NDISWrapper
installed automatically. This is a good thing.
Copy the Windows drivers to the /tmp directory
and cd into the /tmp directory..
To install the windows
driver, type in the terminal:
ndiswrapper -i
./filename.inf
To check if the driver installed successfully
type in the terminal:
ndiswrapper -l
You will see a whole lot of default drivers, to
be safe remove them doing the command for each of them:
ndiswrapper
-e <drivername>
You next need to load the module into the
kernel by typing:
modprobe ndiswrapper
You will see if this worked as the light on the
wireless USB should be now lit.
Next you need to boot the module. Type:
ndiswrapper -m
And finally type this last few lines:
ifdown eth0
ifconfig wlan0 192.168.1.100
route add default gw 192.168.1.1
This stops the eth0 conflict with the LAN IP
addresses
Note: This is only for LANs that use the
192.168.x.x standard. Note: As you can see, this
is almost the exact procedure to the Ubuntu Wireless install,
however I have added/removed parts so it makes it easier. |