First of all your wireless driver is "Ralink 5390" (and
not Realtec RTL8101E/RTL8102E which is your ethernet driver).
After searching a little in the web (and more specifically here
http://ubuntuforums.org/showthread.php?t=1751685&page=2) I found the following solution for your card.
First of all open terminal and write:
- Code:
sudo apt-get install linux-headers-generic build-essential
Then follow these instructions:
Go here:
https://build.opensuse.org/package/file ... 3AwirelessDownload all the patches except the x64_86 patch (I assume you have installed a 32-bit system). Move them to your 2010_1216_RT5390_LinuxSTA_V2.4.0.4_WiFiBTCombo_DPO folder. Now, in a terminal, do:
- Code:
patch -p0 < rt5390sta-2.4.0.4-config.patch
patch -p0 < rt5390sta-2.4.0.4-convert-devicename-to-wlanX.patch
patch -p0 < rt5390sta-2.4.0.4-reduce_debug_output.patch
patch -p0 < rt5390sta-2.4.0.4-remove-potential-conflicts-with-rt2860sta.patch
patch -p0 < rt5390sta-2.4.0.4-return_nonvoid_function.patch
patch -p0 < rt5390sta-2.4.0.4-WPA-mixed.patch
sudo su
cp RT2860STA.dat RT5390STA.dat
mkdir -p /etc/Wireless/RT5390STA
cp RT5390STA.dat /etc/Wireless/RT5390STA
make clean
make
make install
modprobe rt5390sta
exit
Thanx to chili555 for the above.