Quote:
|
Originally Posted by BStsetson
1. Are there any USB wireless (802.11) sticks that work with the standard FC13 load?
|
There
are USB wireless cards that work with driver modules included with the kernel and use firmware included as rpm packages in Fedora 13. A good place to study currently available Linux drivers is linuxwireless.org. See the USB devices listed there. Once you've found some candidates, then see if your Fedora kernel has the driver module...
Code:
modprobe --list | grep wireless
And if linuxwireless.org says it needs firmware (probably so), then you can check for that, too...
Code:
yum list | grep firmware
Or browse for a firmware package in the download server directories or the installation DVD. The hardest part about all of this IMO is making sure the model card that you decide on will have the expected chipset. Manufacturers sometimes change chipsets during the production life of a wireless card. Some are well known to do that. And when a model is known to exist in multiple versions with different chipsets, it's often difficult to impossible to tell what version you would be ordering from an online store. It may not be any easier in a real store. Fortunately, most of these cards are inexpensive, so not a lot is at stake.
Anyway, that is basically what I did when I decided on the ZyXEL G-202 USB wireless adapter. The zd1211rw module gets loaded anytime that the device gets plugged in. All I had to do was install zd1211-firmware.noarch. It works fine. It connects and stays connected. The signal strengths reported are slightly less than what is reported when I'm using my Broadcom BCM4306 cards in the same spots and with the same router. But I don't notice any practical difference.
WARNING: I mentioned my experience finding, setting up, and using the ZyXEL G-202 as an example only. I am making no promises regarding the performance of the ZyXEL G-202 and your satisfaction with it. There are other devices that use that same ZyDAS driver and firmware, and there are other built-in drivers and firmware in Fedora that can be used just as easily by many other USB devices.
Quote:
|
Originally Posted by BStsetson
2. If there is no such animal, is there a PCI wireless card that works without a major
Kabuki dance prior to setup?
|
There are PCI wireless devices that likewise use built-in driver modules and firmware in Fedora. You can find out about those in the same way at linuxwireless.org. See the PCI and PCMCIA device lists.
Quote:
|
Originally Posted by BStsetson
3. Finally, if I do not want to me in the world of GUIs and want a bare machine to run
wireless, is there some place to find how to set up a wireless network with WPA2 using
the /etc/init.d/network, instead of NetworkManager.
|
Before I ever heard of NetworkManager, I used terminal commands and scripts to manage these same Broadcom wireless cards. Basically, I used the utility
/usr/sbin/wpa_passphrase to generate a wpa_supplicant.conf file. And as you said, I did add the lines
proto=WPA and
key_mgmt=WPA-PSK to it. Then I could get things going with these commands in a terminal or script...
Code:
/usr/sbin/wpa_supplicant -Bw -Dwext -iwlan0 -c/etc/wpa_supplicant/wpa_supplicant.conf
/sbin/ifconfig wlan0 up
/sbin/dhclient wlan0
I did business that way for a long time. I don't really miss it though.