0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

【動作レポート】RasPi+Ubuntu+MT7601U

Posted at

背景・課題

Raspberry Pi 4にUbuntu22.04を入れた状態でMT7601Uのチップが載ったWifiアダプターを接続しても利用できなかった.

チップの種類の確認はアダプタをつなげた状態でlsusbを実行すれば判定できる.

$ lsusb
Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 001 Device 003: ID 148f:7601 Ralink Technology, Corp. MT7601U Wireless Adapter

問題の状態ではlsusbで認識できていてもip aでは,それらしきものなし.

解決

カーネルのバージョンを確認し,そのバージョンにあった linux-module-extra-$(version) を入れて再起動.

$ uname -r
5.15.0-1034-raspi
$ sudo apt install linux-modules-extra-5.15.0-1034-raspi
$ sudo reboot

注意として バージョンは適宜変える こと.

参考

ここで「前に linux-modules-extra を入れたら治ったけど,再インスト後なんかまた認識しなくなった...」という内容だが,試しにと linux-module-extra を入れたら認識できたので投稿.

自分は見つけるのに苦労したので,同じように苦労してる同士が報われることを祈る.

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?