gpt4 book ai didi

Ubuntu 14.04设置开机启动脚本的方法

转载 作者:qq735679552 更新时间:2022-09-27 22:32:09 35 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章Ubuntu 14.04设置开机启动脚本的方法由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

rc.local脚本 。

rc.local脚本是一个ubuntu开机后会自动执行的脚本,我们可以在该脚本内添加命令行指令。该脚本位于/etc/路径下,需要root权限才能修改.

该脚本具体格式如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/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

注意: 一定要将命令添加在 exit 0之前 。

如何给ubuntu添加一个开机启动脚本 。

1,新建个脚本文件new_service.sh 。

?
1
2
3
4
#!/bin/bash
# command content
 
exit 0

2,设置权限 。

?
1
sudo chmod 755 new_service.sh

3,把脚本放置到启动目录下 。

?
1
sudo mv new_service.sh /etc/init .d/

4,将脚本添加到启动脚本 。

执行如下指令,在这里90表明一个优先级,越高表示执行的越晚 。

?
1
2
cd /etc/init .d/
sudo update-rc.d new_service.sh defaults 90

移除Ubuntu开机脚本 。

?
1
sudo update-rc.d -f new_service.sh remove

总结 。

以上就是这篇文章的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,如果有疑问大家可以留言交流.

原文链接:https://www.magentonotes.com/ubuntu-config-autostart-shell-script.html 。

最后此篇关于Ubuntu 14.04设置开机启动脚本的方法的文章就讲到这里了,如果你想了解更多关于Ubuntu 14.04设置开机启动脚本的方法的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

35 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com