Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Introduction to Linux - A Hands on Guide
This guide was created as an overview of the Linux Operating System, geared toward new users as an exploration tour and getting started guide, with exercises at the end of each chapter.
For more advanced trainees it can be a desktop reference, and a collection of the base knowledge needed to proceed with system and network administration. This book contains many real life examples derived from the author's experience as a Linux system and network administrator, trainer and consultant. They hope these examples will help you to get a better understanding of the Linux system and that you feel encouraged to try out things on your own.
Click Here to receive this Complete Guide absolutely free.
By coindood at 2004-09-25 15:30
If you're tired of working on getting any wireless card based on the RTL8180 chipset, and don't want to downgrade to use the official linux drivers from Realtek or paying money for the LinuxAnt DriverLoader, then use Ndiswrapper. Getting Ndiswrapper to work is so much easier than the Realtek drivers! This is how I got my setup working on distros ranging from Debian, Knoppix, Slackware, and Gentoo:
Note: These are all console commands (for those VERY new to this!)
I unzipped the drivers into my ndiswrapper directory (/home/user_name/ndiswrapper/), and per the INSTALL text, I typed
Code:
make install
then
Code:
ndiswrapper -i NET8180.INF
to install the driver. Typing
Code:
ndiswrapper -l
will tell you if the driver is present, and for good measure I typed
Code:
dmesg | grep "wlan0"
and looked at the last line to see if it mentioned wlan0.
After all that I did
Code:
modprobe ndiswrapper
to install the module, then proceeded to setup my card using iwconfig:
Code:
iwconfig wlan0 mode Managed
iwconfig wlan0 key YOUR_KEY //if you use a key use this!
iwconfig wlan0 essid YOUR_ESSID
iwconfig wlan0 channel YOUR_CHANNEL
/sbin/ifconfig wlan0 192.168.0.10 up //an unused ip within your network!
/sbin/route add default gw 192.168.0.1 wlan0 //once again this is the AP ip
OR
dhcpcd wlan0
Test out the connection by doing a quick 'ping google.com' to make sure you are connected and the DHCP settings are all correct. If everything works, then congratulations and have fun with your new wireless setup!
To save the "modprobe" settings, use:
Code:
ndiswrapper -m
Knoppix (and other Knoppix-based distros, or those with netcardconfig):
You can omit the last three lines (only configure with iwconfig up to setting the essid) and run "netcardconfig", either from the Knoppix menu under Network, where it is called "Network Card Configuration", and select "yes" in the "Use DHCP broadcast" window. Now you are all set!
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
This worked flawlessly on Slack 10 to get a Mercury KOB 445W PCMCIA card working.
/sbin/ifconfig wlan0 192.168.0.10 up
Works fine prior to that,...I set the ESSID, the channel, and the WEP key.
I am connecting through a Linksys wireless router B from a cable modem.
Thanks for any advice.