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

Linux on Mac のファン周り

Posted at

使っていないMacProにUbuntuをいれて遊んでいたらやたらとうるさい
mbpfanというデーモンを導入したらきちんとファン制御してくれるようになった
(lm-sensorsは電力管理ではよく使われているデーモンなので既にインストールされている可能性が高い)
(/sys/devices/以下にファン用のパラメーターが存在するが型番によっては初期状態では正しく動作しない、これを正しく動作させるものといえる)

以下インストール方法

sudo apt-get install lm-sensors
git clone https://github.com/linux-on-mac/mbpfan.git
cd mbpfan/
make
sudo make install
sudo make tests
sensors

sudo cp mbpfan.service /etc/systemd/system/
sudo systemctl enable mbpfan.service
sudo systemctl daemon-reload
sudo systemctl start mbpfan.service
sudo systemctl status mbpfan

設定の一例

/etc/mbpfan.conf
low_temp = 40
high_temp = 45
max_temp = 55
polling_interval = 1

メモ: Dual bootのセットアップの仕方

rEFIndというブートローダーがオススメ
- The rEFInd Boot Manager
- Linux Multi-boot with Refind
- ブートローダrEFIndをmacに導入する

メモ: M1なので、VM周りが気になる場合

このへんがよいらしい(が、未検証)
- Debian
- Asahi Linux

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