Tried to clean older installations and it give error:
- Code: Select all
athlon@athlon:~$ sudo dkms remove -m Ralink_5390sta -v 2.5.0.3 --all
[sudo] password for athlon:
Error! There are no instances of module: Ralink_5390sta
2.5.0.3 located in the DKMS tree.
So searching on Google how to removes driver modules, I followed this tutorial here
https://help.ubuntu.com/community/WifiDocs/Device/Tenda_W311M to remove the previous rt5390 modules.
Open the modules list
- Code: Select all
sudo gedit /etc/modules
and delete "rt53xxsta" from the list. Save and close.
Unload the rt53xxsta module
- Code: Select all
sudo modprobe -r rt53xxsta
continue with removing the rt53xx directory folder with
- Code: Select all
sudo rm -rf /path/to/directory/
I don't know if I'm allowed to remove that following folder with "rm -rf" but I did it anyway as normal deleting gave me "access permission denied". Be very carefull.
Reboot...
I also tried checking the /var/lib/NetworkManager/NetworkManager.state.
Stop the network manager :
- Code: Select all
sudo stop network-manager
- Code: Select all
sudo gedit /var/lib/NetworkManager/NetworkManager.state
- Code: Select all
[main]
NetworkingEnabled=true
WirelessEnabled=true
WWANEnabled=true
I found that my "wirelessEnabled=false" so I changed it to "true". And start it again once done.. Or reboot
and then reinstalling the new driver by following the command line jungle_boy has posted. Yes, it works now. The wireless option is now available. really big thank you, Jungle_boy.