Проблема:
После установки драйверов (несколько попыток разных драйверов) устройство определялось, но не не находило беспроводных сетей.
Основная часть решения была найдена на сайте:
http://www.ab9il.net/linuxwireless/rt2860.htmlНо потребовалось немного доработать.
Оригинал:
The installation process consists obtaining the source code, compiling and installing the driver.
1. Start by going to the Ralink support page to obtain the latest version of the RT2860 wireless driver and firmware. As this is written, the current driver is version 2.2.0.0, and the latest firmware is version 11. Download them both, and store a backup copy in a safe place. Also consider saving the source code in /usr/src/ for rebuilding the rt2860 driver after any kernel updates.
2. Navigate to the location of the source package, and extract it. Open a console window and use the "tar" command:
ironhand@onosideboard:~$ tar -jxvf 2009_0918_RT2860_Linux_STA_v2.2.0.0.tar.bz2
3. Navigate to the location of the firmware, and extract it. Open a console window and use the "tar" command:
ironhand@onosideboard:~$unzip RT2860_Firmware_V11.zip
4. With root priveleges, use your file manager to place the file rt2860.bin in the folder /lib/firmware.
5. Navigate to the folder /2009_0918_RT2860_Linux_STA_v2.2.0.0/os/linux/, and open the file "config.mk" in a suitable text editor.
Near the top of the config.mk file, there are configuration options for WPA encryption support in the rt2860 driver. Edit both of them to show the option "y" for WPA_SUPPLICANT support:
#ifdef WPA_SUPPLICANT_SUPPORT
# Support Wpa_Supplicant
HAS_WPA_SUPPLICANT=y
#endif // WPA_SUPPLICANT_SUPPORT //
#ifdef NATIVE_WPA_SUPPLICANT_SUPPORT
# Support Native WpaSupplicant for Network Maganger
HAS_NATIVE_WPA_SUPPLICANT_SUPPORT=y
#endif // NATIVE_WPA_SUPPLICANT_SUPPORT //
6. Navigate to the folder /2009_0918_RT2860_Linux_STA_V2.2.0.0/os/linux/, and with root priveleges, compile and install the driver:
ironhand@onosideboard:~$ sudo make && make install
[sudo] password for ironhand:
At this point, the driver should have compiled and installed without errors. Warnings may occur due to minor faults in the code, but the process shouldn't break outright. Three new files should now be in your system:
/etc/Wireless/RT2860STA/RT2860STA.dat (configuration data)
/lib/firmware/rt2860.bin (firmware)
/lib/modules/*yourkernel*/extra/rt2860sta.ko (RT2860 driver)
Another pair of commands in the console, with root priveleges, will load the driver:
ironhand@onosideboard:~$ sudo depmod -ae
[sudo] password for ironhand:
ironhand@onosideboard:~$ sudo modprobe rt2860
After executing the "modprobe" command, the RT2860 wireless driver should load, and any wireless connection manager (Wlassistant, Ceni, Wi-Fi Radar, etc) should properly scan for and report any access points in range. Expect solid connectivity.
Для начала скачайте драйвер и прошивку (Firmware) отсюда
http://eng.ralinktech.com.tw/support.php?s=2 Нам понадобятся:
RT3062PCI/mPCI/CB/PCIe(RT3060/RT3062/RT3562/RT3592)
и
Firmware RT28XX/RT30XX PCI/mPCI/PCIe/CardBus series (RT2760/RT2790/RT2860/RT2890/RT3060/RT3062/RT3562/RT2860/RT2760/RT2890/RT2790/RT3090)
Драйвер сразу распакуйте в /usr/src/, а прошивку (фаил rt2860.bin) в /lib/firmware (для всего нужны права суперпользователя)
Далее нужно отредактировать /usr/src/DPO_RT3562_3592_3062_LinuxSTA_V2.4.1.1_20101217/os/linux/config.mk
В терминале:
sudo gedit /usr/src/DPO_RT3562_3592_3062_LinuxSTA_V2.4.1.1_20101217/os/linux/config.mk
Меняем параметры строк на "y"
HAS_WPA_SUPPLICANT=
yHAS_NATIVE_WPA_SUPPLICANT_SUPPORT=
yЗатем нужно установить сам драйвер:
Переходим в /usr/src/DPO_RT3562_3592_3062_LinuxSTA_V2.4.1.1_20101217
В терминале:
cd /usr/src/DPO_RT3562_3592_3062_LinuxSTA_V2.4.1.1_20101217
sudo make && make install
В процессе установки будут выдаваться предупреждения "Warning" - не пугайтесь - это нормально
Убедитесь, что в системе присутствуют:
1. /etc/Wireless/RT2860STA/RT2860STA.dat (configuration data)
2. /lib/firmware/rt2860.bin (firmware)
3. /lib/modules/*yourkernel*/extra/rt3562sta.ko (RT2860 driver)
Если нет, то:
1. В терминале:
sudo mkdir -p /etc/Wireless/RT2860STA/
sudo cp -t /etc/Wireless/RT2860STA RT2860STA.dat
2. Точно должен быть, вы коприровали его в самом начале.
3. Проще создать в наутилусе с правами суперпользователя. И копировать соответственно (из папки /usr/src/2009_0918_RT2860_Linux_STA_v2.2.0.0/os/linux/).
Дальше нужно загрузить драйвер :
В терминале:
sudo depmod -ae
sudo modprobe rt2860sta
После этих действий Wi-fi заработал.
PS
Не знаю имеет ли это значение, но все манипуляции производил без самой карточки. Её вставил после, естественно выключив комп

.
Пользователь решил продолжить мысль 17 Января 2011, 23:35:34:
После обновления ядра нужно заново установить драйвер
PS
Не знаю, важно ли, но перед установкой я удалил старый драйвер
cd /usr/src/2009_0918_RT2860_Linux_STA_v2.2.0.0/
sudo make uninstall
и вытащил катру из компа.