ファームウェアが不足している可能性があります (Xubuntu 18.04)

ファームウェアが不足している可能性があります (Xubuntu 18.04)

カーネルやファームウェアなどの特定のパッケージをアップグレードすると、数週間にわたってこの警告が表示されていました。

W: Possible missing firmware /lib/firmware/rtl_nic/rtl8125a-3.fw for module r8169
W: Possible missing firmware /lib/firmware/rtl_nic/rtl8168fp-3.fw for module r8169

これらのファームウェアを本当にインストールする必要があるのだろうか。

Xubuntu 18.04.5 カーネル 5.4.0-47 オンボード ビデオ カード

正確には分かりませんが、Debian のバグのようです。
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=947356

ありがとう!

答え1

root としてログインし、これらのコマンドを実行します。

cd /lib/firmware/rtl_nic
wget https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/plain/rtl_nic/rtl8125a-3.fw
wget https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/plain/rtl_nic/rtl8168fp-3.fw

答え2

私もこの問題を抱えていました。以下のコマンドをすべて実行してみましょう。

sudo apt-get update &&
sudo apt-get -y install make gcc linux-headers-$(uname -r) build-essential git &&
git clone https://github.com/lwfinger/rtw88.git &&
cd rtw88/ &&
make &&
sudo make install &&
sudo reboot

プロセスが成功すると再起動します。再起動後、Wi-Fi が復旧するはずです。

カーネルが変更された場合、次の操作を行う必要があります。

cd ~/rtw88
git pull
make
sudo make install

これは、例外なく、新しいカーネルがある場合は必ず実行する必要があります。

参照:

  1. http://ubuntuhandbook.org/index.php/2018/08/no-wifi-adapter-found-hp-laptops-ubuntu-18-04/
  2. https://github.com/lwfinger/rtw88

関連情報