0℃
2021年05月05日
⁄ Linux
⁄ 被围观 6,376次+
Ubuntu Server 20.04.x LTS系统中需要开机启动某个服务、开机备份文件等都可以通过systemd实现
1、创建配置文件
nano /lib/systemd/system/autostart.service #创建文件
[Unit]
Description=autostart
[Service]
Type=forking
PIDFile=/run/autostart.pid
#EnvironmentFile=/etc/systemd/autostart.conf
ExecStart=/home/autostart.conf
ExecReload=/bin/kill -SIGHUP $MAINPID
ExecStop=/bin/kill -SIGINT $MAINPID
[Install]
WantedBy=multi-user.target graphical.target
Alias=autostart.service
ctrl+o #保...
Ubuntu阅读全文