SMM Dell 서명을 가져올 수 없습니다.

SMM Dell 서명을 가져올 수 없습니다.

DELL Inspiron 530을 사용하고 있는데 dmesg로그 에 이 오류 메시지가 나타납니다.

[    3.753349] i8k: unable to get SMM Dell signature

다음을 통해 모듈을 로드할 수 있습니다.

sudo modprobe i8k force=1

시스템이 부팅될 때 어떻게 이를 수행할 수 있습니까?


업데이트 // 그래서 19. 7월 15:04:24 CEST 2015

  • 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
    

업데이트 // 그래서 19. 7월 13:24:09 CEST 2015

  • % 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

모든 준비가 완료되어야 합니다.

관련 정보