LoginSignup
1
1

More than 1 year has passed since last update.

HP Laptop 15s-eq3000でUbuntuをWifiに繋いだ話

Last updated at Posted at 2023-02-20

この記事では以下のURLを参考にした。
https://askubuntu.com/questions/1412219/wifi-adapter-not-found-realtek-rtl8852be-wifi-6-802-11ax-pcie-in-ubuntu-22-04

まず僕の場合は、Ubuntu22.04をインストールするところから(ここでは省略)。

インストールが完了した直後はWifiに繋げなかったので、
デザリングを使い、ターミナルでコマンドを打っていく。
(USBデザリングでWifiに繋いだスマホに繋ぐと便利!)

まずはapt-getを最新の状態にする。

$ sudo apt-get upgrade
$ sudo apt-get update

そして、以下のコマンドを打っていく。

$ sudo apt-get install build-essential
$ sudo apt-get install linux-headers-6.0.0-1011-oem
$ sudo apt-get install git bc
$ git clone https://github.com/HRex39/rtl8852be.git -b dev
$ cd rtl8852be
$ make -j8
$ sudo make install
$ sudo modprobe 8852be

これで完了だ。

ネットワークドライバ(RTL8852be)は、Windowsのデバイスマネージャーで調べた。
有線でなくてもデザリングで初期設定できることに気づかせてくれた知人に感謝である。

このネットワークドライバでなくても、
WindowsでWifiが動いているならばそれを調べて、
githubからそのネットワークドライバをクローンし、
README.mdを見ながら進めていけばうまくいきそうだ。

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1