传授Linux配置开机自启动执行脚本秘籍

admin5个月前笔记62
开机要启动的脚本qidong.sh
[root@c69-01 scripts]# vim /server/scripts/qidong.sh

[root@c69-01 scripts]# cat /server/scripts/qidong.sh
#!/bin/bash
/bin/echo $(/bin/date +%F_%T) >> /tmp/qidong.log
方法一:修改/etc/rc.local

/etc/rc.local,该文件为链接文件

[root@c69-01 ~]# ll /etc/rc.local 
lrwxrwxrwx. 1 root root 13 Feb  5 10:03 /etc/rc.local -> rc.d/rc.local

修改/etc/rc.local文件

[root@c69-01 scripts]# tail -n 1 /etc/rc.local 
/bin/bash /server/scripts/qidong.sh >/dev/null 2>/dev/null

重启系统,查看结果

[root@c69-01 ~]# cat /tmp/qidong.log 
2018-02-19_23:30:56

已开机自启动该脚本

方法二:chkconfig管理

删除掉方法一的配置

[root@c69-01 ~]# vim /etc/init.d/test 
#!/bin/bash
# chkconfig: 3 88 88
/bin/bash /server/scripts/qidong.sh >/dev/null 2>/dev/null

[root@c69-01 ~]# chmod +x /etc/init.d/test

添加到chkconfig,开机自启动

[root@c69-01 ~]# chkconfig --add test
[root@c69-01 ~]# chkconfig --list test
test           	0:off	1:off	2:off	3:on	4:off	5:off	6:off

重启系统,查看结果

[root@c69-01 ~]# cat /tmp/qidong.log 
2018-02-19_23:30:56
2018-02-19_23:59:10

操作成功

关闭开机启动

[root@c69-01 ~]# chkconfig test off
[root@c69-01 ~]# chkconfig --list test
test           	0:off	1:off	2:off	3:off	4:off	5:off	6:off

从chkconfig管理中删除test

[root@c69-01 ~]# chkconfig --list test
test           	0:off	1:off	2:off	3:off	4:off	5:off	6:off

[root@c69-01 ~]# chkconfig --del test

[root@c69-01 ~]# chkconfig --list test
service test supports chkconfig, but is not referenced in any runlevel (run 'chkconfig --add test')

以上2种开机自启动脚本的方法,仅供参考


相关文章

如何轻松玩转树莓派系统?

如何轻松玩转树莓派系统?

安装精简版树莓派系统,让你的树莓派更加轻盈。在这种情况下,你两个选择:要么你可以绞尽脑汁地把所有你不需要的东西都删干净,要么你还可以用精简版树莓派系统Raspberry Pi OS Lite来构建专门...

玩转 Windows 10 中的 Linux 子系统

玩转 Windows 10 中的 Linux 子系统

Web 开发人员们不用再苦恼所用的 Windows 开发平台上没有合适的 Linux 工具和库了。WSL 是由 Windows 内核团队与 Canonical 合作设计和开发的,可以让 Windows...

Linux系统中设置开机自动运行的两种方法

Linux系统中设置开机自动运行的两种方法

有时可能会需要在重启时或者每次系统启动时运行某些命令或者脚本。我们要怎样做呢?本文中我们就对此进行讨论。 我们会用两种方法来描述如何在 CentOS/RHEL 以及 Ubuntu 系统上做到...

apt的update和upgrade区别

apt的update和upgrade区别

一些以前的教程也会提到 sudo apt-get update 和 sudo apt-get upgrade。apt 和 apt-get 命令运行起来几乎一样,除了一些细微的差别,后面我会讨...

简要介绍并发服务器

简要介绍并发服务器

内容该系列教程所用的协议都非常简单,但足以展示并发服务器设计的许多有趣层面。而且这个协议是 有状态的—— 服务器根据客户端发送的数据改变内部状态,然后根据内部状态产生相应的行为。并非所有的协...

LoRA原理与实现--PyTorch自己搭建LoRA模型

LoRA原理与实现--PyTorch自己搭建LoRA模型

一、前言在AIGC领域频繁出现着一个特殊名词“LoRA”,听上去有点像人名,但是这是一种模型训练的方法。LoRA全称Low-Rank Adaptation of Large Language Mode...

发表评论    

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。