-
Hello, I have installed 8852bu driver from morrownr script, thank you for that. I use rpı 4B aarch64 bookworm. Issue is what ever I do for changing country code of phy#1 failed. I have disabled built in wifi there for there is only 1 wlan. Is there anybody who managed to run this device in 5ghz ap? global phy#1 (self-managed) |
Beta Was this translation helpful? Give feedback.
Replies: 6 comments 2 replies
-
Hi @MEL1H Did you run? sudo raspi-config > Localisation Options > WLAN Country A little background: It took so much time getting this driver in good enough shape to handle managed mode that I did very little testing with AP mode. In fact, I did a quick and dirty with 2.4 GHz. This driver came from Realtek in bad shape, however, the previous version, 8852au, was in even worse shape and I refused to release the driver. I also decided to never look at it again and just try to warn Linux users away from the 8852au chipset. I was able to get this driver in good enough shape in managed mode that I though it would work for some people. I don't know when I will have time to work on this driver again as health problems have slowed me down and I have other things higher on my priority list. You won't like what I am going to say but if it were me, I'd sent your adapter back to get my money back and look for something in the Plug and Play list here. The site Menu Menu is: https://github.com/morrownr/USB-WiFi I recommend reading menu items one and two as a minimum. If you want an adapter that can do WiFi 6 AP mode, you have several adapters to pick from that use the Mt7921au chipset. The driver, mt7921u, is in-kernel and is well maintained by Mediatek. The difference in the WiFi 6 class adapter drivers between Mediatek and Realtek is like night and day at this point. I use an Alfa AXML as a WiFi 6, 5 GHz AP. The Alfa AXM should work well also and costs less. I use an Alfa ACM for 2.4 GHz as my Pi4B is dual band. I have an AP guide on the Main Menu, it is menu item 9. The line under the guide is a sample WiFi 6 hostapd.conf if you are interested. Anyway, maybe this helped. |
Beta Was this translation helpful? Give feedback.
-
Thanks. It took a lot of work. It is annoying that it should take so much work. I'm hoping we see things improve as code has already gone into the Linux kernel to stop non-standards compliant wifi drivers starting with WiFi 7. That will prevent these Realtek out-of-kernel drivers from working as they are currently written so maybe that will cause a change.
I get that. Been there, done that. This is one of the main reasons I decided to start this site.
I have a 951AX adapter. This message is going through it as I changed out my Alfa AXML on my Pi4B AP. I have to change adapters a lot so as to do testing. There are 2 walls and about 15 feet between my desktop system and the Pi4B AP. I'm on channel 36 which has some congestion but here is what I am seeing:
wavemon is showing signal level -49 dBm and link quality 87%. It certainly does not have the range of my Alfa AXML but that is not bad so if you are same room, I don't see a problem. I use one of the right angle usb adapter to mount the adapter in the Pi4B. It works well. One thing I have documented is the 951AX won't work with extension cables or powered hubs. It is a low cost adapter so you can't expect perfection but for what you are doing, I don't see a problem. If your AP setup is a bridged setup, I recommend you take a hard look at my AP guide as it has been polished over several years. There are many ways to set up an AP. My guide uses systemd.networkd and hostapd. This guide should provide you with a rock solid, 24/7/365 AP. The guide has internal examples of hostapd.conf for WiFi 5. The example for WiFi 6 is in a separate document right under the guide. I still call it a release candidate but it seems ultra solid so I guess should do away with the RC status. If you have any questions, you can post an issue in issues on the Main Menu. Good luck. |
Beta Was this translation helpful? Give feedback.
-
I just did a quick test. See below. ssh is working fine with RasPiOS 10-10-23 (bookworm). It was broken when 10-10 was released but a system update fixed the problem.
Was it because your Pi IP address changed? You can set a fixed IP address.
No. The mt7921au chipset is a low power chipset only using a max of about 260 mA when at max speed. My first guess as to the problem the poster talked about would be a manufacturing problem. It happens. |
Beta Was this translation helpful? Give feedback.
-
Thank you for your quick responses and all that huge work in this repository. NO IR problem not solved with 8852bu device but I will go with alfa axml device, I close this topic as resolved. |
Beta Was this translation helpful? Give feedback.
-
Rokland has a sale on the AXML currently: |
Beta Was this translation helpful? Give feedback.
-
I bought it from amazon.nl 52€ 😅 |
Beta Was this translation helpful? Give feedback.
Hi @MEL1H
Did you run?
sudo raspi-config > Localisation Options > WLAN Country
A little background: It took so much time getting this driver in good enough shape to handle managed mode that I did very little testing with AP mode. In fact, I did a quick and dirty with 2.4 GHz. This driver came from Realtek in bad shape, however, the previous version, 8852au, was in even worse shape and I refused to release the driver. I also decided to never look at it again and just try to warn Linux users away from the 8852au chipset. I was able to get this driver in good enough shape in managed mode that I though it would work for some people.
I don't know when I will have time to work on this driver ag…