Making WUSB54G work with FC-5
Its always a pain in the *** to get wireless working in Linux systems. Though obviously its getting easier by the day. Follow the instructions given below to make the Linksys USB Network Adapter, WUSB54G, to work with a Linux system. I am making use of Fedora Core 5 (FC-5) for the purpose of this guide.
Troubleshooting:
Q. I get "SIOCSIFFLAGS:No such file or directory" when I execute ifconfig eth4 up.
A. If you look at the logs you will notice that the driver is not able to locate the firmware. The firmware should be located in one of the following directories.
- WUSB54G has a prism chipset. Go to the website http://www.prism54.org. Over there one can find the Linux drivers for the device. We need to download the firmware and the driver.
- Before we do that, we have to make sure that the system has a precompiled kernel. Although the website says that the driver would work with kernel version 2.6.15 or up, I encountered compilation errors. The driver refers to some relayfs structure members and variables that are not defined in 2.6.15 but are present in 2.6.17+.
So download a copy of kernel version 2.6.17 or up and compile it. We can divert our attention to the driver and firmware once we have a compiled kernel. - Click on the "SoftMac/FreeMAC Drivers" section on the prism54 website. Download the appropriate firmware depending on the USB version. Copy this firmware to /lib/firmware/. Rename the file to
isl3890usb
- Go to http://jbnote.free.fr/prism54usb/index.html for downloading the driver. One can download either the source code directly from the website or download it over the net using the Arch system (you would need to have the Arch software installed in your computer). I went with the option of downloading over the net.
- To compile and load the driver, execute the command 'make load' on a terminal.
- Go to /etc/sysconfig/networking/devices/. Create a new file called ifcfg-ethx (where x: is a number, I used 4)
- Put in the following statements, as they appear, in the file.
- Use the iwconfig to verify that eth4 is being listed.
- Type ifconfig eth4 up to activate the device. If all goes well, it would pick up an IP address from the DHCP server. One can verify this using the ifconfig command.
DEVICE=eth4
USERCTL=yes
BOOTPROTO=dhcp
ONBOOT=yes
TYPE=Wireless
MODE=Managed
ESSID=
PEERDNS=yes
RATE=Auto
CHANNEL=1
Troubleshooting:
Q. I get "SIOCSIFFLAGS:No such file or directory" when I execute ifconfig eth4 up.
A. If you look at the logs you will notice that the driver is not able to locate the firmware. The firmware should be located in one of the following directories.
- /usr/lib/hotplug/firmware/
- /etc/firmware/
- /lib/firmware/
0 Comments:
Post a Comment
<< Home