我有一个Ubuntu22.04和Windows 11新安装的双引导,但我的with不工作。上面写着“找不到Wi适配器”。该卡是Realtek RTL8852BE WiFi 6 802.11ax。
终端命令lspci -nnk | grep 0280 -A3的结果是:
01:00.0 Network controller [0280]: Realtek Semiconductor Co., Ltd. Device [10ec:b852]
DeviceName: Realtek Wireless LAN + BT
Subsystem: Hewlett-Packard Company Device [103c:88e3]
02:00.0 Non-Volatile memory controller [0108]: Micron Technology Inc Device [1344:5404] (rev 03)我的笔记本电脑有一个AMD Ryzen 75825U处理器和AMD Radeon图形。任何帮助都将不胜感激。
发布于 2022-06-04 13:55:53
编辑:请删除不正确的驱动程序包:
sudo add-apt-repository -r ppa:kelebek333/kablosuz
sudo apt purge rtw89-dkms
sudo apt update
sudo apt install git bc
git clone https://github.com/HRex39/rtl8852be.git
cd rtl8852be
make将出现几个可能无害的警告。
sudo make install重新启动。您可能需要禁用安全引导。
每次内核更新之后,您必须重新编译:
cd rtl8852be
make clean
git pull
make
sudo make install发布于 2022-11-11 20:13:18
这解决了我的WIFI问题:
git clone https://github.com/HRex39/rtl8852be.git蓝牙在此之后发挥了作用:
git clone https://github.com/HRex39/rtl8852be_bt.git.谢谢
发布于 2022-06-26 17:30:17
#Turn off your Security Boot in BIOS
git clone https://github.com/HRex39/rtl8852be.git
cd rtl8852be
make -j8
sudo make install
sudo modprobe 8852behttps://askubuntu.com/questions/1412219
复制相似问题