SMM Dell署名を取得できません

SMM Dell署名を取得できません

私はDELL inspiron 530を使用していますが、dmesgログにこのエラーメッセージが表示されます

[    3.753349] i8k: unable to get SMM Dell signature

モジュールをロードするには

sudo modprobe i8k force=1

システムの起動時にこれを実行するにはどうすればよいですか?


更新 // 2015 年 7 月 19 日 15:04:24 CEST

  • lsmod | grep i8k

    i8k                    16384  0
    
  • cat /sys/module/i8k/parameters/force

    cat: /sys/module/i8k/parameters/force: No such file or directory
    
  • dmesg | grep i8k

    [    3.324621] i8k: unable to get SMM Dell signature
    

更新 // 2015 年 7 月 19 日 13:24:09 CEST

  • % cat /etc/modprobe.d/i8k.conf

    options i8k force=1
    
  • % cat /etc/modules

    # /etc/modules: kernel modules to load at boot time.
    #
    # This file contains the names of kernel modules that should be loaded
    # at boot time, one per line. Lines beginning with "#" are ignored.
    
    
    # Generated by sensors-detect on Fri Jul  3 19:44:07 2015
    # Chip drivers
    coretemp
    it87
    i8k
    

答え1

conf ファイルを作成することをお勧めします。ターミナルから簡単に作成できます。

sudo -i
echo "options i8k force=1"  >  /etc/modprobe.d/i8k.conf
echo i8k  >> /etc/modules
exit

すべて準備完了です。

関連情報