정리노트
Jetpack 5.0.1 Fan Mode 설정 본문
지금까지 Jetpack에서 Jetson Xavier 디바이스에 있는 Fan을 컨트롤하기 위해서는 크게
nvpmodel명령어를 이용하거나, jtop을 활용하여 이를 컨트롤하는 방법을 주로 사용했었습니다
아래 블로그에 잘 정리되어 있습니다.
https://jstar0525.tistory.com/86
[Jetson] [nvpmodel] 성능, 팬 모드 설정
이번 시간에는 jetson의 성능, 팬 모드를 설정할 수 있는 nvpmodel에 대해 알아보겠습니다. 1. Print help info. $ sudo nvpmodel -h Nvidia Power Model Tool Version 1.1.4 Usage: nvpmodel [-h | --help] [--ve..
jstar0525.tistory.com
그런데, 얼마전 release된 Jetpack 5.0.1에서는
$ sudo nvpmodel -d cool
nvpmodel명령어도 듣지않고,
jtop을 설치해도
위그림처럼 Jetpack UNKNOWN이라 뜨며 Fan을 컨트롤 할수 없었습니다.
Fan을 뭐로 컨트롤하라는 소리인가 해서
포럼에 검색해보니
https://forums.developer.nvidia.com/t/no-xavier-fan-on-jetpack-5-0-1/218719/4
No Xavier fan on Jetpack 5.0.1
hello live459745355, did you meant the fan only rotate during the system boot-up? it’s normal due to the default settings. the fan speed step is associated with the trip point temperature. please check the configuration file, i.e. /etc/nvpmodel/nvpmodel_
forums.developer.nvidia.com
비슷한 문제를 겪는사람을 찾았고, 이에대해 해결책이 나와있었습니다
$ cd /etc/nvpower/nvfancontrol
여기서 확인할 수 있는 .conf파일에 sudo권한으로 들어가서
FAN_DEFAULT_PROFILE 를 다 cool로 바꿔주면 됩니다.
$ sudo gedit nvfancontrol_p2888.conf
FAN_DEFAULT_PROFILE quiet -> cool
$ sudo gedit nvfancontrol_p3668.conf
FAN_DEFAULT_PROFILE quiet -> cool
$ sudo reboot
껐다키면 팬이 돕니다