1
1

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 3 years have passed since last update.

[Archlinux]Macbook Air(5,1)の内蔵Wi-Fiの設定

Last updated at Posted at 2020-01-13

しばらくMacbook AirにArch Linuxを入れて使っていて、以前はwifiは使えていたが、なぜか1Mbpsくらいしか速度が出なかった。

今回クリーンインストールして、wifiのセットアップをやり直していたら、ちゃんと使える設定を見つけたので備忘録。

NetworkManagerの環境。

ハードウェアの情報

$ lspci -nn -vv |grep Broadcom
02:00.0 Network controller [0280]: Broadcom Inc. and subsidiaries BCM43224 802.11a/b/g/n [14e4:4353] (rev 01)

ドライバはb43を使う。

yaourt -S b43-firmware --noconfirm  #b43をインストール

sudo rmmod brcmsmac  #デフォルトのwifiモジュール無効 
sudo rmmod mac80211 bcma brcmutil  #付随モジュール無効

sudo modinfo b43 | grep depends  #b43に必要なモジュールを調べる
sudo modprobe b43 mac80211 ssb bcma mmc_core cfg80211 cordic rng-core
reboot

見事に上下で100Mbps程度出るようになった。

参考先
https://is.gd/6YiNwJ

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?