SOLVED: Wireless card won't work - how do I set it up?

Quick to answer questions about finding your way around Linux Mint as a new user.
Forum rules
There are no such things as "stupid" questions. However if you think your question is a bit stupid, then this is the right place for you to post it. Stick to easy to-the-point questions that you feel people can answer fast. For long and complicated questions use the other forums in the support section.
Before you post read how to get help. Topics in this forum are automatically closed 6 months after creation.
Locked
cfwschmidt

SOLVED: Wireless card won't work - how do I set it up?

Post by cfwschmidt »

Hi, I am new to Linux. I've finally got a PC with hardware that is mostly all compatible and I've heard that many of the new Linux versions, such as Linux Mint, are very user friendly and easy for beginners, so I have decided to give Linux a fair try. I was disappointed to find out when running Linux Mint Isadora from LiveCD that my wireless adapter (Medialink 150N USB adapter) didn't work. I found out there is a directory with a Linux driver on the install cd, but I still can't figure out how to get it to work. There is a README file that has a list of instructions. I've included those instructions at the bottom of this post. I don't understand them but tried following them anyway.

In Step 2, I don't know what GCC, LD or CFLAGS are. Also, I don't know what/where the linux kernel source is. In step 3 it says to set "HAS_NATIVE_WPA_SUPPLICANT_SUPPORT = n", but it also says to set it "= y". I also don't know what it means when it says "=> #>[some command]"; am I supposed to enter that in the terminal somewhere? In step 4, it says to run "make". When I typed in "make" in the terminal, it didn't do anything, it wanted more arguments. Although I haven't made it that far, I'm confused about step 6 as well, the title says to "Load driver...", but the lines below are preceded with a # sign, which seems to be the "comment" sign in this document.

Please help. I'm about to throw in the towel on the "new, improved, *user-friendly*" Linux already. And on a side note, why does Linux require all this file editing, "making", copying, etc just to get a wireless adapter to work? Even with the old Windows 3.x before Plug-n-Play, you only had to open the system settings section and show the system the location of a single driver file and it would work.


Christian


=======================================================================
Build Instructions:
====================

1> $tar -xvzf DPB_RT2870_Linux_STA_x.x.x.x.tgz
go to "./DPB_RT2870_Linux_STA_x.x.x.x" directory.

2> In Makefile
set the "MODE = STA" in Makefile and chose the TARGET to Linux by set "TARGET = LINUX"
define the linux kernel source include file path LINUX_SRC
modify to meet your need.

3> In os/linux/config.mk
define the GCC and LD of the target machine
define the compiler flags CFLAGS
modify to meet your need.
** Build for being controlled by NetworkManager or wpa_supplicant wext functions
Please set 'HAS_WPA_SUPPLICANT=y' and 'HAS_NATIVE_WPA_SUPPLICANT_SUPPORT=y'.
=> #>cd wpa_supplicant-x.x
=> #>./wpa_supplicant -Dwext -ira0 -c wpa_supplicant.conf -d
** Build for being controlled by WpaSupplicant with Ralink Driver
Please set 'HAS_WPA_SUPPLICANT=y' and 'HAS_NATIVE_WPA_SUPPLICANT_SUPPORT=n'.
=> #>cd wpa_supplicant-0.5.7
=> #>./wpa_supplicant -Dralink -ira0 -c wpa_supplicant.conf -d

4> $make
# compile driver source code
# To fix "error: too few arguments to function ¡¥iwe_stream_add_event"
=> $patch -i os/linux/sta_ioctl.c.patch os/linux/sta_ioctl.c

5> $cp RT2870STA.dat /etc/Wireless/RT2870STA/RT2870STA.dat

6> load driver, go to "os/linux/" directory.
#[kernel 2.4]
# $/sbin/insmod rt2870sta.o
# $/sbin/ifconfig ra0 inet YOUR_IP up

#[kernel 2.6]
# $/sbin/insmod rt2870sta.ko
# $/sbin/ifconfig ra0 inet YOUR_IP up

7> unload driver
$/sbin/ifconfig ra0 down
$/sbin/rmmod rt2870sta
Last edited by LockBot on Wed Dec 28, 2022 7:16 am, edited 2 times in total.
Reason: Topic automatically closed 6 months after creation. New replies are no longer allowed.
remoulder
Level 17
Level 17
Posts: 7621
Joined: Fri May 09, 2008 1:14 pm

Re: Wireless card won't work - how do I set it up?

Post by remoulder »

According to threads on ubuntu forums, this adapter (I'm assuming it is the MWN-USB 150?) uses the RT3070 driver but the OS tries to load the RT2800 one. The solution is to blacklist the RT2800 driver as follows:

press Alt+F2 to open a Run dialog and enter gksu gedit /etc/modprobe.d/blacklist.conf

in gedit scroll to the end and add a new line with blacklist rt2800usb, then save and exit

now reboot the system and see if the adapter works? If not post back with the output of lsusb entered in a terminal.
[Edit] your original post and add [SOLVED] once your question is resolved.

“The people are my God” stressing the factor determining man’s destiny lies within man not in anything outside man, and thereby defining man as the dominator and remoulder of the world.
cfwschmidt

Re: Wireless card won't work - how do I set it up?

Post by cfwschmidt »

Thank you for the response. Unfortunately, this didn't solve the problem. I added that line to /etc/modprobe.d/blacklist.conf and rebooted and it still didn't work. I ran "lsusb" beforehand and it said:

Bus 002 Device 001: ID l46b:0001 Linux Foundation 1.1 root hub
Bus 001 Device 002: ID l48f:3070 Ralink Technology, Corp.
Bus 001 Device 001: ID l46b:0001 Linux Foundation 1.1 root hub


After some study I read through the instructions I printed in the original post again, leaving the settings in Makefile and config.mk as they were (I don't know what the WPA_Supplicant, wext, or Network Manager mean so I didn't mess with it). I tried running "make", and this time it ran , although it reported errors. The output is listed below. I think I may have been in the wrong directory before, the location of the config.mk file, not the Makefile. After that I tried step 5 ($cp RT2870STA.dat /etc/Wireless/RT2870STA/RT2870STA.dat) but it said there was no such directory. I went into the file manager and saw no "Wireless" directory in "/etc/". I tried creating one with mkdir, but it said I couldn't. I figured maybe it was because it already existed but was a hidden directory only available to 'root' (I was just guessing. Like I said, I'm totally new to GNU/Linux). I tried changing to the root user by typing "$su" in the terminal (That's what the 'su' command does, right?), but it requested a password. I never gave Linux any passwords, so I don't know what this could possibly be. Tried "default", "password", "root", and a blank pw, with no luck.

Any ideas on how to fix this? Also, do I need to remove that blacklist info I added? Anyone know what my root password would be or if I'm trying to change to 'root' the right way? Also, anyone know what WPA_Supplicant, wext, LD, CFLAGS, or the "=> #>[some command]" notation mean?

Thanks,
Christian


===========================
TERMINAL OUTPUT
===========================
mint@mint /media/7C0488F80488B6A4/MWN-USB-CD $ dir
AcrobatReader autorun.exe Linux setting.ini
App autorun.inf Macintosh User\ Guide
mint@mint /media/7C0488F80488B6A4/MWN-USB-CD $ cd Linux
mint@mint /media/7C0488F80488B6A4/MWN-USB-CD/Linux $ ls
2009_0525_RT3070_Linux_STA_v2.1.1.0 Desktop_2.ini
Desktop_1.ini RT3070_Linux_STA_v2.1.1.0
mint@mint /media/7C0488F80488B6A4/MWN-USB-CD/Linux $ dir
2009_0525_RT3070_Linux_STA_v2.1.1.0 Desktop_2.ini
Desktop_1.ini RT3070_Linux_STA_v2.1.1.0
mint@mint /media/7C0488F80488B6A4/MWN-USB-CD/Linux $ ls
2009_0525_RT3070_Linux_STA_v2.1.1.0 Desktop_2.ini
Desktop_1.ini RT3070_Linux_STA_v2.1.1.0
mint@mint /media/7C0488F80488B6A4/MWN-USB-CD/Linux $ cd 2009_0525_RT3070_Linux_STA_v2.1.1.0
mint@mint /media/7C0488F80488B6A4/MWN-USB-CD/Linux/2009_0525_RT3070_Linux_STA_v2.1.1.0 $ ls
chips iwpriv_usage.txt README_STA_usb sta
common Makefile RT2870STACard.dat sta_ate_iwpriv_usage.txt
include os RT2870STA.dat tools
mint@mint /media/7C0488F80488B6A4/MWN-USB-CD/Linux/2009_0525_RT3070_Linux_STA_v2.1.1.0 $ make
make -C tools
make[1]: Entering directory `/media/7C0488F80488B6A4/MWN-USB-CD/Linux/2009_0525_RT3070_Linux_STA_v2.1.1.0/tools'
gcc -g bin2h.c -o bin2h
make[1]: Leaving directory `/media/7C0488F80488B6A4/MWN-USB-CD/Linux/2009_0525_RT3070_Linux_STA_v2.1.1.0/tools'
/media/7C0488F80488B6A4/MWN-USB-CD/Linux/2009_0525_RT3070_Linux_STA_v2.1.1.0/tools/bin2h
cp -f os/linux/Makefile.6 /media/7C0488F80488B6A4/MWN-USB-CD/Linux/2009_0525_RT3070_Linux_STA_v2.1.1.0/os/linux/Makefile
make -C /lib/modules/2.6.32-21-generic/build SUBDIRS=/media/7C0488F80488B6A4/MWN-USB-CD/Linux/2009_0525_RT3070_Linux_STA_v2.1.1.0/os/linux modules
make[1]: Entering directory `/usr/src/linux-headers-2.6.32-21-generic'
CC [M] /media/7C0488F80488B6A4/MWN-USB-CD/Linux/2009_0525_RT3070_Linux_STA_v2.1.1.0/os/linux/../../common/crypt_md5.o
CC [M] /media/7C0488F80488B6A4/MWN-USB-CD/Linux/2009_0525_RT3070_Linux_STA_v2.1.1.0/os/linux/../../common/crypt_sha2.o
CC [M] /media/7C0488F80488B6A4/MWN-USB-CD/Linux/2009_0525_RT3070_Linux_STA_v2.1.1.0/os/linux/../../common/crypt_hmac.o
CC [M] /media/7C0488F80488B6A4/MWN-USB-CD/Linux/2009_0525_RT3070_Linux_STA_v2.1.1.0/os/linux/../../common/mlme.o
/media/7C0488F80488B6A4/MWN-USB-CD/Linux/2009_0525_RT3070_Linux_STA_v2.1.1.0/os/linux/../../common/mlme.c: In function ‘BssTableSortByRssi’:
/media/7C0488F80488B6A4/MWN-USB-CD/Linux/2009_0525_RT3070_Linux_STA_v2.1.1.0/os/linux/../../common/mlme.c:4406: warning: the frame size of 1572 bytes is larger than 1024 bytes
CC [M] /media/7C0488F80488B6A4/MWN-USB-CD/Linux/2009_0525_RT3070_Linux_STA_v2.1.1.0/os/linux/../../common/cmm_wep.o
CC [M] /media/7C0488F80488B6A4/MWN-USB-CD/Linux/2009_0525_RT3070_Linux_STA_v2.1.1.0/os/linux/../../common/action.o
CC [M] /media/7C0488F80488B6A4/MWN-USB-CD/Linux/2009_0525_RT3070_Linux_STA_v2.1.1.0/os/linux/../../common/cmm_data.o
CC [M] /media/7C0488F80488B6A4/MWN-USB-CD/Linux/2009_0525_RT3070_Linux_STA_v2.1.1.0/os/linux/../../common/rtmp_init.o
/media/7C0488F80488B6A4/MWN-USB-CD/Linux/2009_0525_RT3070_Linux_STA_v2.1.1.0/os/linux/../../common/rtmp_init.c: In function ‘RtmpRaDevCtrlInit’:
/media/7C0488F80488B6A4/MWN-USB-CD/Linux/2009_0525_RT3070_Linux_STA_v2.1.1.0/os/linux/../../common/rtmp_init.c:3710: warning: passing argument 2 of ‘os_alloc_mem’ from incompatible pointer type
/media/7C0488F80488B6A4/MWN-USB-CD/Linux/2009_0525_RT3070_Linux_STA_v2.1.1.0/include/rtmp.h:5687: note: expected ‘UCHAR **’ but argument is of type ‘UCHAR *’
CC [M] /media/7C0488F80488B6A4/MWN-USB-CD/Linux/2009_0525_RT3070_Linux_STA_v2.1.1.0/os/linux/../../common/cmm_tkip.o
CC [M] /media/7C0488F80488B6A4/MWN-USB-CD/Linux/2009_0525_RT3070_Linux_STA_v2.1.1.0/os/linux/../../common/cmm_aes.o
/media/7C0488F80488B6A4/MWN-USB-CD/Linux/2009_0525_RT3070_Linux_STA_v2.1.1.0/os/linux/../../common/cmm_aes.c: In function ‘AES_GTK_KEY_WRAP’:
/media/7C0488F80488B6A4/MWN-USB-CD/Linux/2009_0525_RT3070_Linux_STA_v2.1.1.0/os/linux/../../common/cmm_aes.c:1338: warning: the frame size of 1092 bytes is larger than 1024 bytes
CC [M] /media/7C0488F80488B6A4/MWN-USB-CD/Linux/2009_0525_RT3070_Linux_STA_v2.1.1.0/os/linux/../../common/cmm_sync.o
CC [M] /media/7C0488F80488B6A4/MWN-USB-CD/Linux/2009_0525_RT3070_Linux_STA_v2.1.1.0/os/linux/../../common/eeprom.o
CC [M] /media/7C0488F80488B6A4/MWN-USB-CD/Linux/2009_0525_RT3070_Linux_STA_v2.1.1.0/os/linux/../../common/cmm_sanity.o
CC [M] /media/7C0488F80488B6A4/MWN-USB-CD/Linux/2009_0525_RT3070_Linux_STA_v2.1.1.0/os/linux/../../common/cmm_info.o
CC [M] /media/7C0488F80488B6A4/MWN-USB-CD/Linux/2009_0525_RT3070_Linux_STA_v2.1.1.0/os/linux/../../common/cmm_cfg.o
CC [M] /media/7C0488F80488B6A4/MWN-USB-CD/Linux/2009_0525_RT3070_Linux_STA_v2.1.1.0/os/linux/../../common/cmm_wpa.o
CC [M] /media/7C0488F80488B6A4/MWN-USB-CD/Linux/2009_0525_RT3070_Linux_STA_v2.1.1.0/os/linux/../../common/dfs.o
CC [M] /media/7C0488F80488B6A4/MWN-USB-CD/Linux/2009_0525_RT3070_Linux_STA_v2.1.1.0/os/linux/../../common/spectrum.o
CC [M] /media/7C0488F80488B6A4/MWN-USB-CD/Linux/2009_0525_RT3070_Linux_STA_v2.1.1.0/os/linux/../../common/rtmp_timer.o
CC [M] /media/7C0488F80488B6A4/MWN-USB-CD/Linux/2009_0525_RT3070_Linux_STA_v2.1.1.0/os/linux/../../common/rt_channel.o
CC [M] /media/7C0488F80488B6A4/MWN-USB-CD/Linux/2009_0525_RT3070_Linux_STA_v2.1.1.0/os/linux/../../common/cmm_profile.o
CC [M] /media/7C0488F80488B6A4/MWN-USB-CD/Linux/2009_0525_RT3070_Linux_STA_v2.1.1.0/os/linux/../../common/cmm_asic.o
CC [M] /media/7C0488F80488B6A4/MWN-USB-CD/Linux/2009_0525_RT3070_Linux_STA_v2.1.1.0/os/linux/../../sta/assoc.o
CC [M] /media/7C0488F80488B6A4/MWN-USB-CD/Linux/2009_0525_RT3070_Linux_STA_v2.1.1.0/os/linux/../../sta/auth.o
CC [M] /media/7C0488F80488B6A4/MWN-USB-CD/Linux/2009_0525_RT3070_Linux_STA_v2.1.1.0/os/linux/../../sta/auth_rsp.o
CC [M] /media/7C0488F80488B6A4/MWN-USB-CD/Linux/2009_0525_RT3070_Linux_STA_v2.1.1.0/os/linux/../../sta/sync.o
/media/7C0488F80488B6A4/MWN-USB-CD/Linux/2009_0525_RT3070_Linux_STA_v2.1.1.0/os/linux/../../sta/sync.c: In function ‘PeerBeaconAtScanAction’:
/media/7C0488F80488B6A4/MWN-USB-CD/Linux/2009_0525_RT3070_Linux_STA_v2.1.1.0/os/linux/../../sta/sync.c:651: warning: the frame size of 1252 bytes is larger than 1024 bytes
/media/7C0488F80488B6A4/MWN-USB-CD/Linux/2009_0525_RT3070_Linux_STA_v2.1.1.0/os/linux/../../sta/sync.c: In function ‘PeerBeacon’:
/media/7C0488F80488B6A4/MWN-USB-CD/Linux/2009_0525_RT3070_Linux_STA_v2.1.1.0/os/linux/../../sta/sync.c:1429: warning: the frame size of 1312 bytes is larger than 1024 bytes
/media/7C0488F80488B6A4/MWN-USB-CD/Linux/2009_0525_RT3070_Linux_STA_v2.1.1.0/os/linux/../../sta/sync.c: In function ‘PeerBeaconAtJoinAction’:
/media/7C0488F80488B6A4/MWN-USB-CD/Linux/2009_0525_RT3070_Linux_STA_v2.1.1.0/os/linux/../../sta/sync.c:929: warning: the frame size of 1260 bytes is larger than 1024 bytes
/media/7C0488F80488B6A4/MWN-USB-CD/Linux/2009_0525_RT3070_Linux_STA_v2.1.1.0/os/linux/../../sta/sync.c: In function ‘MlmeStartReqAction’:
/media/7C0488F80488B6A4/MWN-USB-CD/Linux/2009_0525_RT3070_Linux_STA_v2.1.1.0/os/linux/../../sta/sync.c:525: warning: the frame size of 1064 bytes is larger than 1024 bytes
CC [M] /media/7C0488F80488B6A4/MWN-USB-CD/Linux/2009_0525_RT3070_Linux_STA_v2.1.1.0/os/linux/../../sta/sanity.o
CC [M] /media/7C0488F80488B6A4/MWN-USB-CD/Linux/2009_0525_RT3070_Linux_STA_v2.1.1.0/os/linux/../../sta/rtmp_data.o
CC [M] /media/7C0488F80488B6A4/MWN-USB-CD/Linux/2009_0525_RT3070_Linux_STA_v2.1.1.0/os/linux/../../sta/connect.o
/media/7C0488F80488B6A4/MWN-USB-CD/Linux/2009_0525_RT3070_Linux_STA_v2.1.1.0/os/linux/../../sta/connect.c: In function ‘LinkDown’:
/media/7C0488F80488B6A4/MWN-USB-CD/Linux/2009_0525_RT3070_Linux_STA_v2.1.1.0/os/linux/../../sta/connect.c:1975: warning: unused variable ‘Cancelled’
/media/7C0488F80488B6A4/MWN-USB-CD/Linux/2009_0525_RT3070_Linux_STA_v2.1.1.0/os/linux/../../sta/connect.c: In function ‘CntlOidScanProc’:
/media/7C0488F80488B6A4/MWN-USB-CD/Linux/2009_0525_RT3070_Linux_STA_v2.1.1.0/os/linux/../../sta/connect.c:343: warning: the frame size of 1600 bytes is larger than 1024 bytes
CC [M] /media/7C0488F80488B6A4/MWN-USB-CD/Linux/2009_0525_RT3070_Linux_STA_v2.1.1.0/os/linux/../../sta/wpa.o
CC [M] /media/7C0488F80488B6A4/MWN-USB-CD/Linux/2009_0525_RT3070_Linux_STA_v2.1.1.0/os/linux/../../os/linux/rt_linux.o
/media/7C0488F80488B6A4/MWN-USB-CD/Linux/2009_0525_RT3070_Linux_STA_v2.1.1.0/os/linux/../../os/linux/rt_linux.c: In function ‘RtmpOSNetDevAttach’:
/media/7C0488F80488B6A4/MWN-USB-CD/Linux/2009_0525_RT3070_Linux_STA_v2.1.1.0/os/linux/../../os/linux/rt_linux.c:1510: error: ‘struct net_device’ has no member named ‘open’
/media/7C0488F80488B6A4/MWN-USB-CD/Linux/2009_0525_RT3070_Linux_STA_v2.1.1.0/os/linux/../../os/linux/rt_linux.c:1511: error: ‘struct net_device’ has no member named ‘stop’
/media/7C0488F80488B6A4/MWN-USB-CD/Linux/2009_0525_RT3070_Linux_STA_v2.1.1.0/os/linux/../../os/linux/rt_linux.c:1512: error: ‘struct net_device’ has no member named ‘hard_start_xmit’
/media/7C0488F80488B6A4/MWN-USB-CD/Linux/2009_0525_RT3070_Linux_STA_v2.1.1.0/os/linux/../../os/linux/rt_linux.c:1513: error: ‘struct net_device’ has no member named ‘do_ioctl’
/media/7C0488F80488B6A4/MWN-USB-CD/Linux/2009_0525_RT3070_Linux_STA_v2.1.1.0/os/linux/../../os/linux/rt_linux.c:1519: error: ‘struct net_device’ has no member named ‘get_stats’
/media/7C0488F80488B6A4/MWN-USB-CD/Linux/2009_0525_RT3070_Linux_STA_v2.1.1.0/os/linux/../../os/linux/rt_linux.c:1553: error: ‘struct net_device’ has no member named ‘validate_addr’
make[2]: *** [/media/7C0488F80488B6A4/MWN-USB-CD/Linux/2009_0525_RT3070_Linux_STA_v2.1.1.0/os/linux/../../os/linux/rt_linux.o] Error 1
make[1]: *** [_module_/media/7C0488F80488B6A4/MWN-USB-CD/Linux/2009_0525_RT3070_Linux_STA_v2.1.1.0/os/linux] Error 2
make[1]: Leaving directory `/usr/src/linux-headers-2.6.32-21-generic'
make: *** [LINUX] Error 2
mint@mint /media/7C0488F80488B6A4/MWN-USB-CD/Linux/2009_0525_RT3070_Linux_STA_v2.1.1.0 $ cp RT2870STA.dat /etc/Wireless/RT2870STA/RT2870STA.dat
cp: cannot create regular file `/etc/Wireless/RT2870STA/RT2870STA.dat': No such file or directory
mint@mint /media/7C0488F80488B6A4/MWN-USB-CD/Linux/2009_0525_RT3070_Linux_STA_v2.1.1.0 $
User avatar
grimdestripador
Level 6
Level 6
Posts: 1051
Joined: Fri Feb 16, 2007 2:26 am

Re: Wireless card won't work - how do I set it up?

Post by grimdestripador »

Try

Code: Select all

sudo su
as, it is correct, to promote yourself to super user, you need a root password. Thus, the 'Ubuntu' work around is to allow 'users' to be part of 'super users' or 'super user doers = sudo', giving you root functionality with individual user passwords, rather than having a 'root'. Also there is no root, and if there is, its really running root shell under sudo or gksudo. Also, if your are booted to live cd, the username is 'mint', with no password.


. I tried changing to the root user by typing "$su" in the terminal (That's what the 'su' command does, right?), but it requested a password. I never gave Linux any passwords, so I don't know what this could possibly be. Tried "default", "password", "root", and a blank pw, with no luck.

Any ideas on how to fix this? Also, do I need to remove that blacklist info I added? Anyone know what my root password would be or if I'm trying to change to 'root' the right way? Also, anyone know what WPA_Supplicant, wext, LD, CFLAGS, or the "=> #>[some command]" notation mean?
remoulder
Level 17
Level 17
Posts: 7621
Joined: Fri May 09, 2008 1:14 pm

Re: Wireless card won't work - how do I set it up?

Post by remoulder »

See http://ubuntuforums.org/showthread.php?t=1342593 for further help. The driver you are trying to build from the CD is an older one, if you are going to build the driver it is recommended you download the latest release.
[Edit] your original post and add [SOLVED] once your question is resolved.

“The people are my God” stressing the factor determining man’s destiny lies within man not in anything outside man, and thereby defining man as the dominator and remoulder of the world.
cfwschmidt

SOLVED: Wireless card won't work - how do I set it up?

Post by cfwschmidt »

Thank you for the suggestions. I tried them all but nothing worked. I searched on other forums and tried a number of other methods that all failed. I finally found a link to a solution on the Ubuntu forum. The post is located at http://ubuntuforums.org/showthread.php?t=1353044 . This post is for the Linksys WUSB54GC v3 wireless adapter, but it also works for my MediaNet 150-N USB wireless adapter; they both use the Ralink RT3070 chip. I wasn't able to get the newest driver posted on the Ralink site to work. I read on another site that Ralink's does a really half-ass job with it's Linux drivers, and most are full of errors and typos you have to correct. I'm guessing this is the problem with the newest driver. I used v2.1.2.0, which the Ubuntu forum solution suggests and there are still a number of adjustments you have to make listed in the instructions. The forum post has tarballs of the v2.1.2.0 driver/module, a text file instruction set (what is listed in the original post), and screenshots of the install/setup process available for download at the bottom of the first post. I just downloaded these, followed the instructions and now everything is up and running. Thanks to bk of the Ubuntu forums.
Locked

Return to “Beginner Questions”