admin管理员组文章数量:1130349
安装双系统后ubuntu没有办法联网,(本篇博客适用的版本为ubuntu20.04)且针对情况为无线网卡驱动未安装的情况
此时没有网络,可以使用手机数据线连接,使用USB共享网络便可解决无法下载的问题。
- 打开终端使用命令
lshw -C network,如果出现network UNCLAIMED,说明没有网卡驱动 - 使用命令
lspci | grep -i net查询网卡驱动版本
然后进入PCI-device查询name(例本博客中输入b852)
可以看到name为RTL8852BE
使用git clone下载相应驱动
这里推荐git clone https://github/HRex39/rtl8852be.git
前置操作
sudo apt-get update
sudo apt-get upgrade
sudo apt autoremove
sudo apt-get install build-essential
sudo apt-get install bc
使用命令sudo uname -sr查看内核版本
如果kernel版本小于5.18,则执行命令
#Turn off your Security Boot in BIOS
git clone https://github/HRex39/rtl8852be.git
cd rtl8852be
make -j8
sudo make install
sudo modprobe 8852be
如果内核版本高于5.18,则执行命令
#Turn off your Security Boot in BIOS
git clone https://github/HRex39/rtl8852be.git -b dev
cd rtl8852be
make -j8
sudo make install
sudo modprobe 8852be
如此便成功安装好驱动。
安装双系统后ubuntu没有办法联网,(本篇博客适用的版本为ubuntu20.04)且针对情况为无线网卡驱动未安装的情况
此时没有网络,可以使用手机数据线连接,使用USB共享网络便可解决无法下载的问题。
- 打开终端使用命令
lshw -C network,如果出现network UNCLAIMED,说明没有网卡驱动 - 使用命令
lspci | grep -i net查询网卡驱动版本
然后进入PCI-device查询name(例本博客中输入b852)
可以看到name为RTL8852BE
使用git clone下载相应驱动
这里推荐git clone https://github/HRex39/rtl8852be.git
前置操作
sudo apt-get update
sudo apt-get upgrade
sudo apt autoremove
sudo apt-get install build-essential
sudo apt-get install bc
使用命令sudo uname -sr查看内核版本
如果kernel版本小于5.18,则执行命令
#Turn off your Security Boot in BIOS
git clone https://github/HRex39/rtl8852be.git
cd rtl8852be
make -j8
sudo make install
sudo modprobe 8852be
如果内核版本高于5.18,则执行命令
#Turn off your Security Boot in BIOS
git clone https://github/HRex39/rtl8852be.git -b dev
cd rtl8852be
make -j8
sudo make install
sudo modprobe 8852be
如此便成功安装好驱动。
版权声明:本文标题:安装双系统后ubuntu无法联网(没有wifi标识)网卡驱动为RTL8852BE 内容由热心网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:https://it.en369.cn/jiaocheng/1754678432a2715534.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。


发表评论