美文网首页
Ubuntu16.10添加开机启动

Ubuntu16.10添加开机启动

作者: lniwn | 来源:发表于2017-07-04 11:14 被阅读0次
    • 创建服务脚本
      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添加开机启动

          本文链接:https://www.haomeiwen.com/subject/dsithxtx.html