Greetings!
I've been working on installing Fedora Core 6 on my machine for some time now. I have the install working, but I'm having problems getting the network adapter recognized. Any help would be appreciated. I have kernel 2.6.18-1.2798.fc6.
The adapter in question is a Linksys WUSB54GS. From what I see on
http://linux-wless.passys.nl I can use the Ralink Tech RT73 driver. I downloaded the driver (RT73_Linux_STA_Drv1.0.3.6), logged on as root, and following the instructions as per the README (using the kernel 2.6 options where appropriate):
1> $tar -xvzf RT73_Linux_STA_Drv_x.x.x.x.tar.gz
go to "./RT73_Linux_STA_Drv_x.x.x.x/Module" directory.
Executed from /root/Desktop - no problems
2> $cp Makefile.4 ./Makefile # [kernel 2.4]
or
$cp Makefile.6 ./Makefile # [kernel 2.6]
did Makefile.6 version, No problems (file already exists, overwrote)
3> [kernel 2.4]
$chmod 755 Configure
$make config # config build linux os version
Didn't do, 2.4 specific?
4> $make all # compile driver source code
Executed, got a couple of warnings about variables not being used, no errors
5> $cp rt73.bin /etc/Wireless/RT73STA/ # copy firmware
/etc/Wireless/RT73STA/ directory did not exist; I created it and copied the file
6> $dos2unix rt73sta.dat
$cp rt73sta.dat /etc/Wireless/RT73STA/rt73sta.dat
# !!!check if it is a binary file before loading !!!
Executed, no problems. rt73sta.dat is text file containing config items
7> $load
#[kernel 2.4]
# $/sbin/insmod rt73.o
# $/sbin/ifconfig rausb0 inet YOUR_IP up
#[kernel 2.6]
# $/sbin/insmod rt73.ko
# $/sbin/ifconfig rausb0 inet YOUR_IP up
This is the part which gets me. There's a file called load in the modules directory that looks to be a script to execute the above commands. Here are the contents:
/sbin/insmod rt73.o
/sbin/ifconfig rausb0 inet 192.168.5.234 up
/sbin/route add default gw 192.168.5.254
I've tried both executing as a script and manually entering the commands. The first line seems to execute correctly, i.e. the first time there was no return code or error, subsequent times it says module already loaded.
However when I try to run the /sbin/ifconfig line it says:
SIOCSIFADDR: No such device
rausb0: unknown interface: No such device
rausb0: unknown interface: No such device
I'm at a loss as how to proceed.
lsusb reports:
Bus 005 Device 004: ID 13b1:0020 Linksys
which is the correct id for the Ralink driver.
Any and all thoughts would be most appreciated.
Regards,
John E.