云网牛站
所在位置:首页 > Linux教程 > 在Ubuntu 18.04系统中设置开机启动脚本的方法

在Ubuntu 18.04系统中设置开机启动脚本的方法

2018-09-22 10:58:37作者:airdot稿源:linux站

在Ubuntu 18.04系统不能像其它Ubuntu一样采用编辑rc.local文件来设置开机启动脚本,你可以通过下面的步骤设置后使rc.local文件可用。请按以下步骤操作。

 

1、建立rc-local.service文件

运行命令:

sudo vi /etc/systemd/system/rc-local.service

 

2、将下面代码复制到rc-local.service文件中

在上面建议rc-local.service文件后复制下面代码到该文件中:

[Unit]

Description=/etc/rc.local Compatibility

ConditionPathExists=/etc/rc.local

[Service]

Type=forking

ExecStart=/etc/rc.local start

TimeoutSec=0

StandardOutput=tty

RemainAfterExit=yes

SysVStartPriority=99

[Install]

WantedBy=multi-user.target

 

3、创建文件rc.local

运行命令:

sudo vi /etc/rc.local

 

4、将下面代码复制到rc.local文件

把下面代码复制到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.

echo "看到这行字,说明添加自启动脚本成功。" > /usr/local/test.log

exit 0

 

5、给rc.local加上权限

运行命令:

sudo chmod +x /etc/rc.local

 

6、开启服务

运行命令:

sudo systemctl enable rc-local

 

7、启动服务并检查状态

直接运行以下两个命令:

sudo systemctl start rc-local.service

sudo systemctl status rc-local.service

 

8、重启并检查test.log文件

做完以上七个步骤就重新启动系统,运行以下命令检查test.log文件:

cat /usr/local/test.log

 

结语

如果能看到test.log文件的内容,就说明上面的设置成功了。现在可以通过编辑rc.local文件的方法来设置启动脚本了。

 

相关主题

Ubuntu 18.04上设置桌面程序开机自启动

精选文章
热门文章