From the sounds of it, Linux detects your hard-wired ethernet port, but needs a driver for the wireless card. In fact, Linux by default doesn't support very many wireless cards at all. You're usually forced to download the drivers.
So, you'll first need to find the exact name and model of your wireless card. Then google the brand/model of the card + "linux driver" or something similar. You'll then find a driver, and (hopefully) installation instructions.
Warning: many wireless drivers require you to compile them and need the kernel's source code. If you run into such a problem, come post here and we'll give you further instructions on that.
John A
Vampirical Lurker
7,630 posts since Apr 2006
Reputation Points: 2,240
Solved Threads: 339
madwifi-devel-0.9.3-31_r1865.fc5.at.i386.rpm - madwifi kernel header files
The madwifi kernel headers are used for accessing the kernel modules' API. [more]
You don't really need this rpm - it's a development version, and there's no real reason to use one unless you want to beta test. madwifi-0.9.3-31_r1865.fc5.at.i386.rpm - A linux device driver for Atheros chipsets (ar5210, ar5211, ar5212)
This is *one* of the rpms you need. Dec 23 18:43:40 CET 2006 madwifi-hal-kmdl-2.6.18-1.2257_1.fc5.cubbi_suspend2-0.9.3-31_r1865.fc5.at.x86_64.rpm - A linux device driver for Atheros chipsets (ar5210, ar5211, ar5212)
madwifi-hal-kmdl-2.6.18-1.2257_1.fc5.cubbi_suspend2-0.9.3-31_r1865.fc5.at.x86_64.rpm - A linux device driver for Atheros chipsets (ar5210, ar5211, ar5212)
These kernel modules won't work because they're for 64-bit platform, which is incompatible with your processor chipset.
I suggest reading this guide, which explains which RPMs you need, and how to install madwifi. http://madwifi.org/wiki/UserDocs/Distro/RedHat
Hope this helps
John A
Vampirical Lurker
7,630 posts since Apr 2006
Reputation Points: 2,240
Solved Threads: 339
I have the docs for yum, but it seems somewhat unclear to me...when a yum command is issued, the docs say it "downloads" the proper packages etc. Since I am trying to make a wireless system work, I obviously don't have access to the internet yet. Am I chasing my tail here issuing a command that "downloads" the proper package when I in fact don't even have access to the internet yet?
Yes. :cheesy:I ran the uname-r cmd to determine my kernel. It returned 2.6.15-1.2054_FC5. When I viewed the livna repository, I didn't see a madwifi kernel module-package that support this kernel. what do I do in this case? You need to upgrade your kernel. In this case, yum makes this process a whole lot easier, so what you might want to do is physically connect your laptop to your router to do all the downloading and updating, and once that's done then try to hook everything up.
If you can get an internet connection (best thing is to hook up the laptop to the router before it boots, and then DHCP will be automatic), then try this at the prompt:
# su
[enter password]
# yum upgrade kernel
And then your kernel will be updated. At this point, you have 2 options: you can either proceed like you were going to do previously, and download an RPM kernel module that matches the lateest Linux kernel version, or you can install madwifi using the same method as the kernel: via yum. You might want to try this method first, as it's probably the easiest:
# yum install madwifi
Hopefully it will be installed and you can then detect a wireless card via iwconfig.
John A
Vampirical Lurker
7,630 posts since Apr 2006
Reputation Points: 2,240
Solved Threads: 339
is it possible for me to burn the files to a cd and install it on linux or that is pretty much a one way street?
It is possible, but it's cumbersome. Simply burning the rpms to the disc is not enough, as the rpm merely contains packaging information, and to actually install the program it needs additional data downloaded. To be frank, I don't even know how to get the actual package, and it's not exactly easy.
Is there really a reason why you can't simply hook up your laptop with ethernet to a router? It would really make the whole install thing a lot easier.
John A
Vampirical Lurker
7,630 posts since Apr 2006
Reputation Points: 2,240
Solved Threads: 339
Try cleaning and updating yum first.
# su
[enter password]
# yum clean all
# yum -y update
Your respositories file may also be corrupted, but first try the above commands.
John A
Vampirical Lurker
7,630 posts since Apr 2006
Reputation Points: 2,240
Solved Threads: 339
John A
Vampirical Lurker
7,630 posts since Apr 2006
Reputation Points: 2,240
Solved Threads: 339
This will not require internet connection, right?
It will require an internet connection, since downloading an RPM is just file information. The actual data is downloaded when you use the rpm command to install it.
John A
Vampirical Lurker
7,630 posts since Apr 2006
Reputation Points: 2,240
Solved Threads: 339