1
2

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.

Linux Mint で Wi-Fi 接続する(MacBook Pro)

Posted at

はじめに

古いMacBookPro(Mid 2012)にLinuxMintを入れたのですが、Wi-Fiが繋がりませんでした。

結論

以下でドライバをインストールして再起動すればWi-Fiデバイスを認識して繋がりました。

sudo apt install broadcom-sta-dkms

環境

Linux Mint 20.1
MacBook Pro (Mid 2012)
BCM4331

状況

まず、iwconfigで状況を確認しました。enp1s0f0は有線LANなので、無線LANデバイスは認識されていないです。

$ iwconfig 
enp1s0f0  no wireless extensions.

lo        no wireless extensions.

次に、lspciでデバイスを確認してみました。BCM4331が無線LANデバイスのようです。

$ lspci
(略)
02:00.0 Network controller: Broadcom Inc. and subsidiaries BCM4331 802.11a/b/g/n (rev 02)
(略)

調べてみるとBroadcomのドライバが必要なようです。以下でインストールして再起動しました。

$ sudo apt install broadcom-sta-dkms
$ sudo reboot

もう一度iwconfigで確認してみると、wlp2s0認識されていることが確認できます。

$ iwconfig
wlp2s0    IEEE 802.11  ESSID:off/any  
          Mode:Managed  Access Point: Not-Associated   Tx-Power=200 dBm   
          Retry short limit:7   RTS thr:off   Fragment thr:off
          Power Management:off
          
enp1s0f0  no wireless extensions.

lo        no wireless extensions.

参考文献

19.2 “Tina” Cinnamon Wi-Fi Broadcom BCM4331 MacBook

1
2
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
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?