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.

Manjaro LinuxでAMDのビデオカードのファンが回らない対処法

Posted at

かつて私はこの問題に自分の前のビデオカード6600XTで直面し、以下のような解決策を見つけました:

  1. amdgpu-fanをインストールする

    yay -S amdgpu-fan
    
  2. 設定ファイル /etc/amdgpu-fan.yml を作成する
    設定例:

    #Fan Control Matrix. [<Temp in C>,<Fanspeed in %>]  
    speed_matrix:  
     # DEFAULTS
     #- [0, 0]  
     #- [30, 33]  
     #- [45, 50]  
     #- [60, 66]  
     #- [65, 69]  
     #- [70, 75]  
     #- [75, 89]  
     #- [80, 100]  
     - [0, 0]  
     - [30, 0]  
     - [45, 20]  
     - [60, 66]  
     - [65, 69]  
     - [70, 75]  
     - [75, 89]  
     - [80, 100]  
    # optional  
    # cards:  # can be any card returned from `ls /sys/class/drm | grep "^card[[:digit:]]$"`  
    # - card0  
      
    # optional  
    # temp_drop: 5  # how much temperature should drop before fan speed is decreased
    
  3. amdgpu-fanをサービスとして作成し、起動する

    sudo systemctl start amdgpu-fan
    sudo systemctl enable amdgpu-fan
    

これが誰かの役に立つことを願っています。
ビデオカードが過熱しているとは思わず、モニター上のビデオアーティファクトを見るまで全く予期していなかったので、このようなことに注意を払ってください。

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?