您能告诉我如何在启动时自动执行以下命令,而不必每次都手动输入:
sudo thinkfan -n
答案1
只需输入以下命令启用 rc.local 文件
sudo systemctl enable rc-local.service
之后将你想要的每个命令添加到以下文件中
nano /etc/rc.local
答案2
正如所述zmalltalker.com您必须创建一个 systemd 服务。
创建一个文件,例如/usr/lib/systemd/system/thinkfan.service
包含以下内容:
[Unit]
Description=simple and lightweight fan control program
[Service]
ExecStart=/usr/sbin/thinkfan -q -n
[Install]
WantedBy=multi-user.target
并启用并启动服务
sudo systemctl enable thinkfan.service
sudo systemctl start thinkfan.service