在/lib/systemd/system目录下新建hello.service文件
[Unit]
Description=Hello Service
[Service]
Type=simple
ExecStart=/usr/bin/hello.sh
SuccessExitStatus=2
[Install]
WantedBy=multi-user.target
这里注意一点,当系统服务的进程是在ExecStart的程序中完成时,选用Type=simple配置,如果ExecStart的程序有子进程在后台运行时,应该使用Type=forking配置,父进程退出时,子进程也能够在后台运行。
新建启动脚本文件hello.sh并加可执行权限
#!/bin/bash
echo
"Hello World!"
chmod +x /usr/bin/hello.sh
重启systemctl系统服务和允许hello.service
systemctl daemon-reload
systemctl
enable
hello.service
检测开机启动
journalctl -f -u hello.service
修改默认网络地址脚本
vi /lib/systemd/network/10-eth0.network