Results 1 to 2 of 2
i recently transfered my laptop to ubuntu 10.04. my laptop hasnt got a build in wireless adapter so i brought a belkin n150 wireless adapter. this was working fine on ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 03-23-2011 #1Just Joined!
- Join Date
- Mar 2011
- Posts
- 1
wireless help
i recently transfered my laptop to ubuntu 10.04. my laptop hasnt got a build in wireless adapter so i brought a belkin n150 wireless adapter. this was working fine on windows but now im not sure if its recognising it as i cant seem to pick up my internet connection.
ive searched the internet and to be honest found answers but being new to linux i am horribly confused??????
- 03-23-2011 #2
Post the output of
I believe you'll find the usbid is either 050d:935b or 050d:935a.Code:lsusb lsmod
If so, the driver you want is the rt2870sta. Instructions are here.
There are reports of folks still having trouble with the card and that driver. A possible solution if that is the case is to do the following:
Open the text editor gedit with root permissions here
Paste in this line and saveCode:gksudo gedit /etc/udev/rules.d/network_drivers.rules
Now open gedit to hereCode:ACTION=="add", SUBSYSTEM=="usb", ATTR{idVendor}=="050d", ATTR{idProduct}=="935a", RUN+="/sbin/modprobe -qba rt2870sta"
Paste in this line and save.Code:gksudo gedit /etc/modprobe.d/network_drivers.conf
Depending on the usbid lists it as 935a or 935b, you'll need to change the where it says in the first ATTR{idProduct}=="935a" to match, ie, change the a to a b if necessary, and same in the second one, where it says 050d 935a.Code:install rt2870sta /sbin/modprobe --ignore-install rt2870sta $CMDLINE_OPTS; /bin/echo "050d 935a" > /sys/bus/usb/drivers/rt2870/new_id


Reply With Quote
