英伟达 nvidia jetson AGX xavier 风扇开机自启动设置

news/2024/11/28 11:53:22/

1. 风扇开机自启设置

切换到 root 用户

sudo su

修改风扇pwm调速文件权限

chmod 777 /sys/devices/pwm-fan/target_pwm

修改系统外设配置文件,并添加风扇开机启动任务:

vim /lib/systemd/system/rc-local.service

注意:
1.如不知道该文件路径,可以通过搜索rc-local.service来查看;
2.vim编辑器使用:进入vim编辑器后,按i键进入编辑模式,对内容进行编辑,按esc退出编辑模式,退出编辑模式情况下,输入:wq,可保存并退出vim编辑器。

修改前内容:

#  SPDX-License-Identifier: LGPL-2.1+
#
#  This file is part of systemd.
#
#  systemd is free software; you can redistribute it and/or modify it
#  under the terms of the GNU Lesser General Public License as published by
#  the Free Software Foundation; either version 2.1 of the License, or
#  (at your option) any later version.# This unit gets pulled automatically into multi-user.target by
# systemd-rc-local-generator if /etc/rc.local is executable.
[Unit]
Description=/etc/rc.local Compatibility
Documentation=man:systemd-rc-local-generator(8)
ConditionFileIsExecutable=/etc/rc.local
After=network.target[Service]
Type=forking
ExecStart=/etc/rc.local start
TimeoutSec=0
RemainAfterExit=yes
GuessMainPID=no

在后面添加install区块:

[Install]
WantedBy=multi-user.target
Alias=rc-local.service

修改后内容:

#  SPDX-License-Identifier: LGPL-2.1+
#
#  This file is part of systemd.
#
#  systemd is free software; you can redistribute it and/or modify it
#  under the terms of the GNU Lesser General Public License as published by
#  the Free Software Foundation; either version 2.1 of the License, or
#  (at your option) any later version.# This unit gets pulled automatically into multi-user.target by
# systemd-rc-local-generator if /etc/rc.local is executable.
[Unit]
Description=/etc/rc.local Compatibility
Documentation=man:systemd-rc-local-generator(8)
ConditionFileIsExecutable=/etc/rc.local
After=network.target[Service]
Type=forking
ExecStart=/etc/rc.local start
TimeoutSec=0
RemainAfterExit=yes
GuessMainPID=no[Install]
WantedBy=multi-user.target
Alias=rc-local.service

新建任务文件:

vim /etc/rc.local

添加风扇自启任务(其中echo后的值为风扇转速,范围为0-250):

#!/bin/bash -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.sleep 30
echo "200" > /sys/devices/pwm-fan/target_pwmexit 0

使rc-local服务自动启动

systemctl enable rc-local   #这条语句就是创建一个超链接,在系统启动服务程序中.

给rc.local文件赋予可执行权限:

chmod +x /etc/rc.local

先执行如下命令,启动服务并检查状态

systemctl daemon-reload	#重新加载
systemctl stop   rc-local.service	#停止rc-local.service服务
systemctl start  rc-local.service	#启动rc-local.service服务
systemctl status rc-local.service	#检查服务状态

如果上面的命令不报错了,那说明设置成功了,然后就可以重启看下效果

2. 直接开启风扇(重启无效)

用vim编辑器修改(范围:0~250):

 vim /sys/devices/pwm-fan/target_pwm

终端直接修改:

sudo sh -c "echo 150 > /sys/devices/pwm-fan/target_pwm"

第一次写博客,有不足之处请批评指出。

参考资料:
https://blog.csdn.net/u013171226/article/details/107680325
http://lnmp.ailinux.net/systemctl


http://www.ppmy.cn/news/825711.html

相关文章

Vue3+Vite+Pinia+Naive后台管理系统搭建之二:scss 的安装和使用

前言 如果对 vue3 的语法不熟悉的,可以移步 Vue3.0 基础入门,快速入门。 1. 安装依赖 yarn add sass -D // or npm install sass -D 2. 页面样式初始化 reset.scss /* 新建 src/assets/style/reset.scss */ /* 页面样式初始化 */ html, body, div, s…

跳木桩----(爱思创)

源代码 #include <bits/stdc.h> using namespace std;int main(){int n,a[10010],maxd,ans0;cin>>n;for(int i1;i<n;i){cin>>a[i];}cin>>maxd;sort(a1,an1);for(int i1;i<n;i){if(a[i]-a[i-1]<maxd){ans;}else{break;}}cout<<ans<&…

超简单 不进PE 不用U盘 自己重装电脑系统步骤

超简单不用U盘 不进PE 自己重装电脑系统 Ghost重装系统GHO镜像安装系统 点击 下载

win10忘记开机密码,使用U盘解决问题(不用重装系统,不会丢失数据)

1. 背景 实验室一台电脑的开机密码忘记了&#xff0c;搜索了很多方法均为得到解决&#xff0c;在知乎上看到一篇帖子有时&#xff0c;转载如下。 第1步 下载及安装 到官网https://www.passfolk.com/windows-password-recovery.html下载安装包&#xff0c;如下&#xff1a; …

U盘作为启动盘的重装系统教程

好吧&#xff0c;闲着没事干嘛&#xff0c;重装系统玩丫~ 步骤1&#xff1a;U盘启动盘制作 我们需要借助一个U盘作为系统启动盘&#xff0c;这个U盘中要有系统重装软件及系统镜像。这时候&#xff0c;我们需要借助一个软件将一个普通的U盘转化为启动盘&#xff0c;目前网上有很…

不使用U盘如何直接重装Win11系统

不少朋友都看过电脑技术人员用U盘来重装系统&#xff0c;但是大家想知道如果不用U盘能不能进行重装系统&#xff0c;答案是可以&#xff01;&#xff01;&#xff01;现在重装系统非常方便&#xff0c;您不需要高超的技术就可以搞定系统重装&#xff0c;今天我们就来聊一聊如何…

笔记本不用U盘怎么重装系统Win7

笔记本不用U盘怎么重装系统Win7&#xff1f;当我们的笔记本出现被病毒木马破坏、系统中文件受损、系统崩溃无法启动等种种原因无法进入系统操作时&#xff0c;就需要用到U盘重装了&#xff0c;但如果只是像电脑运行卡顿这种还可以进入系统操作的情况下&#xff0c;我们就不一定…

不用U盘 重装系统(别再浪费钱去电脑城装系统了)

不用U盘 重装系统&#xff08;别再浪费钱去电脑城装系统了&#xff09; 首先打开浏览器&#xff0c;搜索MSDN回车&#xff0c;选择第一个网站 点击操作系统 往下拉找到win10专业版 选择&#xff08;business editions&#xff09;和 (x64) 打开迅雷&#xff0c;点击新建&a…