Ubuntu16.10添加开机启动

  • 创建服务脚本
    vim /etc/systemd/system/rc-local.service
[Unit]
Description=/etc/rc.local service
After=network.target
ConditionPathExists=/etc/rc.local

[Service]
Type=forking
ExecStart=/etc/rc.local start
TimeoutSec=0
RemainAfterExit=yes

[Install]
WantedBy=multi-user.target
  • 编辑/etc/rc.local文件
#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.

exit 0
  • 修改权限
chown root:root /etc/rc.local
chmod +x /etc/rc.local
  • 启动服务systemctl enable rc-local.service

你可能感兴趣的:(Ubuntu16.10添加开机启动)