Systemd 服务不会在启动时自行启动

Systemd 服务不会在启动时自行启动

这是我的系统脚本:

[Unit]
Description=Service for controling amdgpu fan.
After=syslog.target

[Service]
Type=simple
User=root
ExecStart=/usr/bin/python3 /usr/local/bin/amdgpu-fan
Restart=always

[Install]
WantedBy=multi-user.target

使用 手动启动时运行良好systemctl start amdgpu-fan.service

我已经完成sudo systemctl daemon-reloadsudo systemctl enable在重新启动时通过查看来确认它已启用sudo systemctl list-unit-files。然而尽管如此,如果我这样做,ps aux | grep amdgpu-fan它肯定不会运行,我的显卡当然有过热的风险。

不确定问题是什么,感谢帮助。

相关内容