当前位置:网站首页>【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
边栏推荐
- leetcode刷题 (5.31) 字符串
- 从 SQL 文件迁移数据到 TiDB
- MySQL learning record 07 index (simple understanding)
- IOT -- interpreting the four tier architecture of the Internet of things
- Rviz仿真时遇到机器人瞬间回到世界坐标原点的问题及可能原因
- Colorlog combined with logging to print colored logs
- PLT in Matplotlib tight_ layout()
- China's high purity aluminum target market status and investment forecast report (2022 Edition)
- 从 TiDB 集群迁移数据至另一 TiDB 集群
- 使用 BR 备份 TiDB 集群数据到兼容 S3 的存储
猜你喜欢

Synchronized solves problems caused by sharing

Let the bullets fly for a while
![[cloud native] teach you how to build ferry open source work order system](/img/fb/507f763791235bd00bc8201e5d7741.png)
[cloud native] teach you how to build ferry open source work order system
![[MySQL] log](/img/e9/1617122888c096cf6aba2bdb88f0ef.png)
[MySQL] log

matplotlib. Widgets are easy to use

Make learning pointer easier (3)

C language custom type: struct

Yyds dry goods inventory three JS source code interpretation eventdispatcher

Hcip day 16

The ECU of 21 Audi q5l 45tfsi brushes is upgraded to master special adjustment, and the horsepower is safely and stably increased to 305 horsepower
随机推荐
远程存储访问授权
MySQL learning record 07 index (simple understanding)
Migrate data from CSV files to tidb
Circular reference of ES6 module
leetcode刷题 (5.31) 字符串
Chinese Remainder Theorem (Sun Tzu theorem) principle and template code
2022.02.13 - NC004. Print number of loops
LDAP application (4) Jenkins access
Yyds dry goods inventory three JS source code interpretation eventdispatcher
China vanadium battery Market Research and future prospects report (2022 Edition)
Rviz仿真时遇到机器人瞬间回到世界坐标原点的问题及可能原因
What is the use of entering the critical point? How to realize STM32 single chip microcomputer?
Introduction to backup and recovery Cr
[2022 广东省赛M] 拉格朗日插值 (多元函数极值 分治NTT)
使用 TiUP 升级 TiDB
Online yaml to CSV tool
【云原生】手把手教你搭建ferry开源工单系统
图像融合--挑战、机遇与对策
Restore backup data on S3 compatible storage with tidb lightning
Pyqt5 development tips - obtain Manhattan distance between coordinates