[Bug 442178] Re: rt2860 doesn't connect on 802.11n wifi

2010-08-19 Thread Winston Smith
You don't have to compile the driver to get it work with the current Lucid kernel (2.6.32-24). You just need the configuration file (RT2860STA.dat). 1. Download the driver for RT2860PCI/mPCI/CB/PCIe(RT2760/RT2790/RT2860/RT2890 from the page http://www.ralinktech.com/support.php?s=2 2. Extract

[Bug 442178] Re: rt2860 doesn't connect on 802.11n wifi

2010-08-04 Thread QuiescentWonder
This problem STILL exists in Lucid. I found a forum post somewhere that has similar information to Sisternicky's post here. Here is what I did. I followed the directions from Sisternicky - this WILL NOT WORK if you don't edit the values to HAS_WPA_SUPPLICANT=y and

[Bug 442178] Re: rt2860 doesn't connect on 802.11n wifi

2010-06-20 Thread v1t03k
Hi everybody, I had the same problem as I have an ASUS PCE-N13, 300Mbps, PCIe x1 wireless card with the same chipset RA2860STA. I've tried to compile from the source version 2.3.0.0 but had no luck with that. My kernel is 2.6.32-23-generic #37-Ubuntu SMP Fri Jun 11 08:03:28 UTC 2010 x86_64

[Bug 442178] Re: rt2860 doesn't connect on 802.11n wifi

2010-06-20 Thread Simone Donadello
I'm using Ubuntu 10.04 on EEEPC 901 (Ralink rt2860). I had this bug too. With the new release, I also had the bug #496093 (https://bugs.launchpad.net/ubuntu/+source/linux/+bug/496093) : no connection to WPA/WPA2 mixed mode wifi. I followed the instructions in the post #190 of the previous bug,

[Bug 442178] Re: rt2860 doesn't connect on 802.11n wifi

2010-05-04 Thread Ramki Kazhiyur-Mannar
If this does not work for someone, try this along with Ledif's solution: Add these lines to /etc/modprobe.d/blacklist.conf: #the driver for the wirelss adapter blacklist rt2800usb blacklist rt2x00usb blacklist rt2x00lib then execute the following commands: sudo rmmod rt2800usb rt2x00usb

[Bug 442178] Re: rt2860 doesn't connect on 802.11n wifi

2010-04-28 Thread krutoileshii
can someone point me in a direction on how to fix this permanently? at least the issue with the wireless mode so i don't have to type the commands every time i install a new version? -- rt2860 doesn't connect on 802.11n wifi https://bugs.launchpad.net/bugs/442178 You received this bug

[Bug 442178] Re: rt2860 doesn't connect on 802.11n wifi

2010-04-16 Thread krutoileshii
rbmorse did you try iwpriv ra0 set WirelessMode=9 -- rt2860 doesn't connect on 802.11n wifi https://bugs.launchpad.net/bugs/442178 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list

[Bug 442178] Re: rt2860 doesn't connect on 802.11n wifi

2010-04-07 Thread rbmorse
+1 on Lucid. The Ralink driver worked great through either Alpha 3 or Alpha 4, but since the Beta was released I have not been able to implement a secure connection to my AP. I can see my AP and others, but I can't get it to negotiate an WPA2 connection. -- rt2860 doesn't connect on 802.11n

[Bug 442178] Re: rt2860 doesn't connect on 802.11n wifi

2010-03-30 Thread John Hunt
Additional: Kernel is 2.6.32-16-generic on amd64 Network card is edimax pci: Network controller: RaLink RT2800 802.11n PCI -- rt2860 doesn't connect on 802.11n wifi https://bugs.launchpad.net/bugs/442178 You received this bug notification because you are a member of Ubuntu Bugs, which is

[Bug 442178] Re: rt2860 doesn't connect on 802.11n wifi

2010-03-29 Thread John Hunt
This bug also affects me on Lucid (apt-upgraded on the 28th March 2010) The source on ralink's site is pretty ugly, but has worked as a work around for some time. This is a fairly popular driver, and although people might not *need* 802.11n, I believe it's more important what with all the HD

[Bug 442178] Re: rt2860 doesn't connect on 802.11n wifi

2010-03-26 Thread krutoileshii
once you place the script run update-rc.d script_name defaults to ensure that it's loaded at startup -- rt2860 doesn't connect on 802.11n wifi https://bugs.launchpad.net/bugs/442178 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. --

[Bug 442178] Re: rt2860 doesn't connect on 802.11n wifi

2010-03-26 Thread krutoileshii
sorry not Karmic, Lucid -- rt2860 doesn't connect on 802.11n wifi https://bugs.launchpad.net/bugs/442178 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com

[Bug 442178] Re: rt2860 doesn't connect on 802.11n wifi

2010-03-25 Thread krutoileshii
this is a workaround, how would we eliminate the need for a workaround? Thanks a lot for the workaround though, help quite a bit. Install new versions almost daily have the script on the flash drive now. -- rt2860 doesn't connect on 802.11n wifi https://bugs.launchpad.net/bugs/442178 You

[Bug 442178] Re: rt2860 doesn't connect on 802.11n wifi

2010-03-25 Thread krutoileshii
by the way it's wlan0 in Karmic -- rt2860 doesn't connect on 802.11n wifi https://bugs.launchpad.net/bugs/442178 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com

[Bug 442178] Re: rt2860 doesn't connect on 802.11n wifi

2010-03-24 Thread krutoileshii
WirelessMode=9 WirelessMode=5 definitely fix the problem. Which config file controls this? -- rt2860 doesn't connect on 802.11n wifi https://bugs.launchpad.net/bugs/442178 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs

[Bug 442178] Re: rt2860 doesn't connect on 802.11n wifi

2010-03-24 Thread Ledif
Create a executable file with the following, put it in /etc/init.d #!/bin/sh # Activate 802.11n case $1 in 'start') iwpriv ra0 set WirelessMode=9 iwpriv ra0 set HtBw=1 ;; 'stop') ;; *) echo Usage: $0 { start | stop } ;; esac exit 0 -- rt2860

[Bug 442178] Re: rt2860 doesn't connect on 802.11n wifi

2010-03-22 Thread krutoileshii
where is this initial configuration located? might as well fix it if it works. -- rt2860 doesn't connect on 802.11n wifi https://bugs.launchpad.net/bugs/442178 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list

[Bug 442178] Re: rt2860 doesn't connect on 802.11n wifi

2010-02-17 Thread wolph
Same problem here (eeepc 901). Workaraound works: sudo iwpriv ra0 set WirelessMode=9 #(WirelessMode=5 aswell) sudo iwpriv ra0 set HtBw=1 And reconnect manually afterwards via network-manager. I dont see the point in installing the driver manually, if its just an configuration issue. I think

[Bug 442178] Re: rt2860 doesn't connect on 802.11n wifi

2010-02-17 Thread Ledif
Use Webmin to create a bootup action containing the two commands, leave out 'sudo'. Regards Ledif -- rt2860 doesn't connect on 802.11n wifi https://bugs.launchpad.net/bugs/442178 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. --

[Bug 442178] Re: rt2860 doesn't connect on 802.11n wifi

2010-02-16 Thread krutoileshii
Vasya where you from? you might need to adjust you country settings if you are in Russia to match. -- rt2860 doesn't connect on 802.11n wifi https://bugs.launchpad.net/bugs/442178 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. --

[Bug 442178] Re: rt2860 doesn't connect on 802.11n wifi

2010-02-08 Thread krutoileshii
yes i did, and not once, this also happens to be the case in other distros like fedora and Mandriva. you usually have to restart the interface as well. that helped me every time so far without fail. however, it does not guarantee that it will work for you. i just want that file to be included

[Bug 442178] Re: rt2860 doesn't connect on 802.11n wifi

2010-02-08 Thread krutoileshii
Vorst case, ralink native driver seems to work as well, however, it spams the logs quite a bit. -- rt2860 doesn't connect on 802.11n wifi https://bugs.launchpad.net/bugs/442178 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. --

[Bug 442178] Re: rt2860 doesn't connect on 802.11n wifi

2010-01-19 Thread Vasya Pupkin
krutoileshii: Did you try it yourself? In Ubuntu 9.04 with built-in r2860 driver, this file is processed but it doesn't have any effect. -- rt2860 doesn't connect on 802.11n wifi https://bugs.launchpad.net/bugs/442178 You received this bug notification because you are a member of Ubuntu Bugs,

[Bug 442178] Re: rt2860 doesn't connect on 802.11n wifi

2010-01-18 Thread krutoileshii
you shouldn't have to do that for those setting if you have the RT2860STA.dat file in /etc/Wireless/RT2860STA/ folder. the only thing you would have to do is restart your interface. -- rt2860 doesn't connect on 802.11n wifi https://bugs.launchpad.net/bugs/442178 You received this bug

[Bug 442178] Re: rt2860 doesn't connect on 802.11n wifi

2009-12-31 Thread Vasya Pupkin
Sisternicky, you offer to compile and replace a built in driver, thats not what I asked for. -- rt2860 doesn't connect on 802.11n wifi https://bugs.launchpad.net/bugs/442178 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. --

[Bug 442178] Re: rt2860 doesn't connect on 802.11n wifi

2009-12-30 Thread Vasya Pupkin
I did a lot of google searching and finally found a solution on how to enable 802.11n on rt2860sta shipped with Ubuntu 9.04. If you execute following commands after wireless connection is established sudo iwpriv ra0 set WirelessMode=9 sudo iwpriv ra0 set HtBw=1 it will reconnect using 802.11n

AW: [Bug 442178] Re: rt2860 doesn't connect on 802.11n wifi

2009-12-30 Thread Sisternicky
] Im Auftrag von Vasya Pupkin Gesendet: Mittwoch, 30. Dezember 2009 21:48 An: teise...@web.de Betreff: [Bug 442178] Re: rt2860 doesn't connect on 802.11n wifi I did a lot of google searching and finally found a solution on how to enable 802.11n on rt2860sta shipped with Ubuntu 9.04. If you execute

[Bug 442178] Re: rt2860 doesn't connect on 802.11n wifi

2009-10-10 Thread nicolas kleinklaus
Nicolas Joyard : Sisternicky was talking about a patch to compile last Ralink kernel. The one included in the the kernel is the 1.8.0 and the last one is the 2.2.0. Maybe it corrects tons of things...but we can't try it since it doesn't compile on 2.6.31 kernel. I'll try to compile it with your

[Bug 442178] Re: rt2860 doesn't connect on 802.11n wifi

2009-10-09 Thread Jim Louvau
Any word on a fix? I lost 'n' connectivity installing the beta on a eee and an msi lappy, both with rt2860 cards (2.6.31-12-generic). -- rt2860 doesn't connect on 802.11n wifi https://bugs.launchpad.net/bugs/442178 You received this bug notification because you are a member of Ubuntu Bugs, which

[Bug 442178] Re: rt2860 doesn't connect on 802.11n wifi

2009-10-09 Thread Sisternicky
There is a patch for the driver to compile on 2.6.31 Kernels... It even works (Interface shows up in iwlist and ifconfig...). The Problem is: Network-Manager does not accept the driver (It does not even see a wireless device any more)! But the driver itself works with the patch if you bypass

[Bug 442178] Re: rt2860 doesn't connect on 802.11n wifi / NetworkManager does not accept OEM Driver

2009-10-09 Thread Nicolas Joyard
Sisternicky, thanks for your help, but the problem is not that we cannot use the driver. It works very well with 802.11b/g networks. The problem reported in this bug is that it doesn't handle 802.11N networks. ** Summary changed: - rt2860 doesn't connect on 802.11n wifi / NetworkManager does not

[Bug 442178] Re: rt2860 doesn't connect on 802.11n wifi

2009-10-05 Thread Nicolas Joyard
Confirmed on Karmic. ** Changed in: linux (Ubuntu) Status: New = Confirmed -- rt2860 doesn't connect on 802.11n wifi https://bugs.launchpad.net/bugs/442178 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing

[Bug 442178] Re: rt2860 doesn't connect on 802.11n wifi

2009-10-05 Thread nicolas kleinklaus
I try to compile the last ralink driver from their web page but it doesn't work. Compilation exits with these errors : /rt_linux.c:1691: error: ‘struct net_device’ has no member named ‘hard_start_xmit’

[Bug 442178] Re: rt2860 doesn't connect on 802.11n wifi

2009-10-05 Thread Nicolas Joyard
Nicolas, this build problem is known. Ralink drivers are written for old versions of the kernel; the Ubuntu version is patched to allow building with newer kernels. -- rt2860 doesn't connect on 802.11n wifi https://bugs.launchpad.net/bugs/442178 You received this bug notification because you are

[Bug 442178] Re: rt2860 doesn't connect on 802.11n wifi

2009-10-05 Thread nicolas kleinklaus
Ok thanks. It seems that there are some progresses in the 2.6.32RC1 : http://www.kroah.com/log/linux/staging-status-09-2009.html

[Bug 442178] Re: rt2860 doesn't connect on 802.11n wifi

2009-10-04 Thread nicolas kleinklaus
** Description changed: I'm trying the beta version of 9.10 on my eeepc901 (this model uses the Ralink rt2860 controler) I'm unable to connect my 802.11n network. If I configure my routeur on N mode only, I can't connect at all. But if I configure it on N+G, I can connect in G

[Bug 442178] Re: rt2860 doesn't connect on 802.11n wifi

2009-10-04 Thread nicolas kleinklaus
** Description changed: I'm trying the beta version of 9.10 on my eeepc901 (this model uses the Ralink rt2860 controler) I'm unable to connect my 802.11n network. If I configure my routeur on N mode only, I can't connect at all. But if I configure it on N+G, I can connect in G