当前位置:网站首页>[NVIDIA development board] FAQ (updated from time to time)
[NVIDIA development board] FAQ (updated from time to time)
2022-07-06 08:35:00 【Will_ Ye】
It's estimated that I'll be with you for a long time Nvidia Dealing with the development board of , Record some problems encountered
- ssh Try to connect nvidia The board , Report the following error
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY!
Someone could be eavesdropping on you right now (man-in-the-middle attack)!
It is also possible that a host key has just been changed.
The fingerprint for the ECDSA key sent by the remote host is
SHA256:9XvufSSIeZ7MAurIZ1Qw9Z13YV1Zcim2kthmAlECgYw.
Please contact your system administrator.
Add correct host key in /root/.ssh/known_hosts to get rid of this message.
Offending ECDSA key in /root/.ssh/known_hosts:8
ECDSA host key for 192.168.122.100 has changed and you have requested strict checking.
Host key verification failed.
lost connection
There is a simple and crude way , hold ssh Under the known_hosts Just delete the folder rm -rf ~/.ssh/known_hosts
If you worry about other problems , First copy A backup , If something happens, you can recover cp ~/.ssh/known_hosts ~/.ssh/known_hosts_bak
After deleting , It should be ssh In the past the , Pro feasible measurement
- Nvidia The fan on the board doesn't work , The temperature is high 60° Above
First check the current fan speed ,cat /sys/devices/pwm-fan/target_pwm
If it shows 0, It means that the current fan does not turn , The value is the current speed
There are two ways to set the speed
- The first is to give a specified speed directly , Keep the fan running , But restart will fail
- The second setting is startup
1) The first method
Enter the following command to set the current fan speed :sudo sh -c "echo 200 > /sys/devices/pwm-fan/target_pwm"
remember , This is just a one-off , No more after restart .
2) The second method
① Write a script to start the fan , stay /usr/bin/ Create mirror-fan Folder , establish mirror-fan.sh file
set -x
set -e
filepath="/sys/devices/pwm-fan/target_pwm"
echo 0 > ${filepath}
sleep 5
echo 200 > ${filepath}
exit 0
② Create boot entry , stay /lib/systemd/system/ Create under directory mirror-fan.service
[Unit]
Description=Mirror fan
[Service]
User=root
Type=simple
ExecStart=/bin/bash /usr/bin/mirror-fan/mirror-fan.sh
[Install]
WantedBy=multi-user.target
③ Open one terminal, Then input sudo systemctl enable mirror-fan.service
④ Restart to see if it takes effect
- Remote shutdown / Restart command
To turn it off :sudo poweroff
restart :sudo reboot
边栏推荐
- 2022.02.13 - 238. Maximum number of "balloons"
- Is it safe to open an account in Zheshang futures?
- Zhong Xuegao, who cannot be melted, cannot escape the life cycle of online celebrity products
- C语言深度解剖——C语言关键字
- pcd转ply后在meshlab无法打开,提示 Error details: Unespected eof
- JVM performance tuning and practical basic theory - Part 1
- 【MySQL】锁
- Sort according to a number in a string in a column of CSV file
- 704 二分查找
- Golang force buckle leetcode 1020 Number of enclaves
猜你喜欢
Hungry for 4 years + Ali for 2 years: some conclusions and Thoughts on the road of research and development
Circular reference of ES6 module
[secretly kill little partner pytorch20 days -day01- example of structured data modeling process]
vulnhub hackme: 1
游戏解包的危害及资源加密的重要性
Leetcode question brushing (5.28) hash table
Precise query of tree tree
堆排序详解
CISP-PTE实操练习讲解
ROS编译 调用第三方动态库(xxx.so)
随机推荐
Research Report on Market Research and investment strategy of microcrystalline graphite materials in China (2022 Edition)
Summary of phased use of sonic one-stop open source distributed cluster cloud real machine test platform
如何进行接口测试测?有哪些注意事项?保姆级解读
Hungry for 4 years + Ali for 2 years: some conclusions and Thoughts on the road of research and development
tree树的精准查询
C language double pointer -- classic question type
China Light conveyor belt in-depth research and investment strategy report (2022 Edition)
游戏解包的危害及资源加密的重要性
堆排序详解
vulnhub hackme: 1
Configuring OSPF load sharing for Huawei devices
China vanadium battery Market Research and future prospects report (2022 Edition)
MySQL learning record 10getting started with JDBC
化不掉的钟薛高,逃不出网红产品的生命周期
JS pure function
[luatos-air551g] 6.2 repair: restart caused by line drawing
JVM 快速入门
Bottom up - physical layer
2022.02.13 - NC004. Print number of loops
延迟初始化和密封类