当前位置:网站首页>【Nvidia开发板】常见问题集 (不定时更新)
【Nvidia开发板】常见问题集 (不定时更新)
2022-07-06 08:22:00 【Will_Ye】
很长时间内估计都要跟Nvidia的开发板打交道,记录一些遇到的问题
- ssh尝试连接nvidia板子,报以下错误
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@ 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
有一个简单粗暴的方法,把ssh下的known_hosts文件夹给删掉就行rm -rf ~/.ssh/known_hosts
如果担心会出其他问题,先copy一个备份,如果出了事也能恢复cp ~/.ssh/known_hosts ~/.ssh/known_hosts_bak
删掉之后,应该就可以ssh过去了,亲测可行
- Nvidia板子上的风扇不转,温度都高到60°以上了
先查看当前风扇转速,cat /sys/devices/pwm-fan/target_pwm
如果显示0,就说明当前风扇没转,有数值就是当前的转速
有两种方法设置转速
- 第一种直接给个指定速度,让风扇一直转,不过重启就失效了
- 第二种设置开机启动
1)第一种方法
输入一下命令设置当前风扇转速:sudo sh -c "echo 200 > /sys/devices/pwm-fan/target_pwm"
记住,这个只是一次性的,重启后就没有了。
2)第二种方法
①写一个启动风扇的脚本,在/usr/bin/下创建mirror-fan文件夹,创建mirror-fan.sh文件
set -x
set -e
filepath="/sys/devices/pwm-fan/target_pwm"
echo 0 > ${filepath}
sleep 5
echo 200 > ${filepath}
exit 0
② 创建开机启动项,在/lib/systemd/system/目录下创建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
③ 打开一个terminal,然后输入sudo systemctl enable mirror-fan.service
④ 重启看看有没有生效
- 远程关机/重启指令
关机:sudo poweroff
重启:sudo reboot
边栏推荐
- Golang DNS 随便写写
- [MySQL] lock
- Image fusion -- challenges, opportunities and Countermeasures
- LDAP Application Section (4) Jenkins Access
- logback1.3. X configuration details and Practice
- Cisp-pte practice explanation
- IOT -- interpreting the four tier architecture of the Internet of things
- 【MySQL】鎖
- Vocabulary notes for postgraduate entrance examination (3)
- LDAP application (4) Jenkins access
猜你喜欢
Résumé des diagrammes de description des broches de la série ESP
2022 Inner Mongolia latest construction tower crane (construction special operation) simulation examination question bank and answers
NFT smart contract release, blind box, public offering technology practice -- jigsaw puzzle
Sort according to a number in a string in a column of CSV file
The resources of underground pipe holes are tight, and the air blowing micro cable is not fragrant?
Nft智能合约发行,盲盒,公开发售技术实战--合约篇
Yyds dry goods inventory three JS source code interpretation eventdispatcher
[research materials] 2021 Research Report on China's smart medical industry - Download attached
【刷题】牛客网面试必刷TOP101
Step by step guide to setting NFT as an ens profile Avatar
随机推荐
Golang DNS write casually
On the day of resignation, jd.com deleted the database and ran away, and the programmer was sentenced
延迟初始化和密封类
MFC sends left click, double click, and right click messages to list controls
All the ArrayList knowledge you want to know is here
1204 character deletion operation (2)
使用 BR 备份 TiDB 集群数据到兼容 S3 的存储
使用 TiDB Lightning 恢复 S3 兼容存储上的备份数据
2022.02.13 - NC004. Print number of loops
化不掉的钟薛高,逃不出网红产品的生命周期
Deep learning: derivation of shallow neural networks and deep neural networks
VMware virtualization cluster
sys.argv
2022.02.13 - 238. Maximum number of "balloons"
JVM performance tuning and practical basic theory - Part 1
sys. argv
Yyds dry goods inventory three JS source code interpretation eventdispatcher
从 TiDB 集群迁移数据至另一 TiDB 集群
Cisp-pte practice explanation
Leetcode skimming (5.29) hash table