Linux 设置开机启动

标签: Linux 系统 发布于:2021-05-21 13:01:26 编辑于:2021-05-21 13:01:26 浏览量:1470

Gnome

有一个应用 Startup Application Preference,在里面添加即可。

systemctl

配置文件地址:/etc/systemd/system/name.service

[Unit]
Description=My Service Daemon

[Service]
ExecStart=command here

[Install]
WantedBy=multi-user.target
# 设置开机启动
systemctl enable name
# 立刻启动
systemctl start name
# 查看状态
systemctl status name

pm2

pm2 start command

参考

https://github.com/Dreamacro/clash/wiki/clash-as-a-daemon

未经允许,禁止转载,本文源站链接:https://iamazing.cn/