首页 > 系统相关 >RedmiBook Pro 15 2022 锐龙版 安装ubuntu,没有WiFi解决方案

RedmiBook Pro 15 2022 锐龙版 安装ubuntu,没有WiFi解决方案

时间:2023-06-10 16:33:39浏览次数:114  
标签:sudo 15 make WiFi rtl8852be git https com Pro

一、原因

ubuntu没有对应的网卡驱动

二、解决方案

1. 换源

为了之后的安装软件因此要换成快速的国内镜像源,此处推荐 清华源

备份原来的 source.list 文件命令, 并打开文件编辑

cd /etc/apt/
sudo cp sources.list sources.list.bak
sudo gedit sources.list

将清华源中内容复制到文件内:
image

image

更新源命令:

sudo apt-get update

2. 安装驱动

命令:

sudo apt-get update
sudo apt-get install make gcc linux-headers-$(uname -r) build-essential git

查看内核版本:

uname -r

比如:5.19.0-32-generic

如果小于5.18则运行以下命令:

#Turn off your Security Boot in BIOS

git clone https://kgithub.com/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://kgithub.com/HRex39/rtl8852be.git -b dev
cd rtl8852be
make -j8
sudo make install
sudo modprobe 8852be

3. 大功告成

image

三、参考文章

  1. Ubuntu20.10系统安装 -- 小米redmibook pro14 https://zhuanlan.zhihu.com/p/616543561?utm_id=0
  2. /lwfinger/rtw89驱动 https://github.com/lwfinger/rtw89
  3. RealTek 8852驱动 https://kgithub.com/HRex39/rtl8852be

标签:sudo,15,make,WiFi,rtl8852be,git,https,com,Pro
From: https://www.cnblogs.com/AllenMi/p/17471493.html

相关文章

  • [转]Proxmox VE pve添加已有的硬盘为存储
    作者:佛西链接:https://foxi.buduanwang.vip/virtualization/pve/2736.html/思路:1.建一个目录,然后将已有分区mount挂载到目录,如果是windows的ntfs分区,则需要先安装ntfs-3g2.到pve网页管理界面,点击左侧根节点"数据中心"-右侧点击"存储"-再点击右侧"添加"按钮-目录-id项随便自......
  • protobuf教程(二)---引入其他proto文件
    被引入的response.proto的文件:syntax="proto3";packageresponse;optiongo_package="github.com/TripleCGame/apis/api/response;response";import"google/protobuf/struct.proto";messageResponse{int32code=1;google.prot......
  • Rocky Linux 安装 Open Project
    一、概要1.环境(1)RockyLinux9.12.准备(1)SSL证书a.创建私钥目录sudomkdir/etc/ssl/privateb.生成证书和密钥OpenSSL系列c.移动证书sudomvopenproject.example.com.crt.pem/etc/ssl/certssudomvopenproject.example.com.key.pem/etc/ssl/private......
  • Failed to bind properties under 'spring.datasource.primary' to javax.sql.DataSou
     2023-06-1011:04:13.778WARN22452---[main]ConfigServletWebServerApplicationContext:Exceptionencounteredduringcontextinitialization-cancellingrefreshattempt:org.springframework.beans.factory.UnsatisfiedDependencyException:Error......
  • Failed to bind properties under 'spring.datasource.primary' to javax.sql.DataSou
     2023-06-1011:04:13.778WARN22452---[main]ConfigServletWebServerApplicationContext:Exceptionencounteredduringcontextinitialization-cancellingrefreshattempt:org.springframework.beans.factory.UnsatisfiedDependencyException:Error......
  • Failed to bind properties under 'spring.datasource.primary' to javax.sql.DataSou
    ​  2023-06-1011:04:13.778WARN22452---[main]ConfigServletWebServerApplicationContext:Exceptionencounteredduringcontextinitialization-cancellingrefreshattempt:org.springframework.beans.factory.UnsatisfiedDependencyException:......
  • Failed to bind properties under 'spring.datasource.primary' to javax.sql.DataSou
    ​  2023-06-1011:04:13.778WARN22452---[main]ConfigServletWebServerApplicationContext:Exceptionencounteredduringcontextinitialization-cancellingrefreshattempt:org.springframework.beans.factory.UnsatisfiedDependencyException:......
  • application.properties
    server.port=8080spring.datasource.driver-class-name=com.mysql.jdbc.Driverspring.datasource.url=jdbc:mysql://localhost:3307/teachmanger?useSSL=falsespring.datasource.username=rootspring.datasource.password=123456spring.datasource.type=com.alibaba.dru......
  • P7959 [COCI2014-2015#6] WTF 题解
    P7959[COCI2014-2015#6]WTF题解呃,是一道DP题说实话,原题实际上是不要输出一种方法的……但是似乎放这道题的人想增加一点难度?这里有两种做法,但都是DP。预备观察我们首先观察一些性质,以方便解题。循环不变:我们可以观察到,在\(n\)次变换后,序列会还原。也就是说,两个......
  • 【每日一题】Problem 327A - Flipping Game
    原题解决思路计算数字"1"的最大数目,可以转换成计算数组最大和,即求\(maxSum(oldArraySum-(1\rightarrow0)+(0\rightarrow1))\RightarrowoldArraySum+maxSum(flipSum)\)误区注意:题目要求必须执行一次,因此起始值不是0而是-1#include<bits/stdc++.h>intm......