Ubuntu18.04 开机自启动脚本

Ubuntu18.04生成rc.local

Ubuntu没有自带其他linux版本自带的rc.local文件的开机自启动方法,所以要自己生成rc.local文件:

  1. 生成rc-local.service文件将一下内容复制进rc-local…service文件
    sudo gedit /etc/systemd/system/rc-local.service
    将一下内容复制进该文件
[Unit]
Description=/etc/rc.local Compatibility
ConditionPathExists=/etc/rc.local  #脚本文件位置
 
[Service]
Type=forking
ExecStart=/etc/rc.local start  #配置的脚本文件rc.local为start
TimeoutSec=0    
StandardOutput=tty  #标准输出
RemainAfterExit=yes
SysVStartPriority=99  #优先级,当有多个开机启动文件时可以设置不同的值
 
[Install]
WantedBy=multi-user.target
  1. 生成rc.local
    sudo gedit /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 ena
  • 6
    点赞
  • 46
    收藏
    觉得还不错? 一键收藏
  • 6
    评论
评论 6
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值