首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

Linux如何添加自启动文件(添加在哪里)

本文说的启动文件指的是内核启动之后,启动根文件系统系统过程中添加自启动文件。

文件启动顺序

/etc/inittab > /etc/init.d/rcS 首先根文件系统会启动/etc/inittab,然后会启动 /etc/init.d/rcS这个文件,这个顺序在各个版本中基本都是保持不变的。怎么到这步的先不关心。我们从 /etc/init.d/rcS这个文件开始关注如何添加自己的启动文件。

这个rcS文件不同版本写法不一样。以我手上的一个为例看下

PATH=/sbin:/bin:/usr/sbin:/usr/bin

runlevel=S

prevlevel=N

umask 022

export PATH runlevel prevlevel

#Make sure proc is mounted

#

[ -d "/proc/1" ] || mount /proc

#

#Source defaults.

#

. /etc/default/rcS

#

#Trap CTRL-C &c only in this shell so we can interrupt subprocesses.

#

trap ":" INT QUIT TSTP

#

#Call all parts in order.

#

exec /etc/init.d/rc S

这个文件最后执行/etc/init.d/rc 这个文件并传入参数S

rc部分文件如下

...

# First, run the KILL scripts.

if [ $previous != N ]

then

for i in /etc/rc$runlevel.d/K[0-9][0-9]*

do

# Check if the script is there.

[ ! -f $i ] && continue

# Stop the service.

startup $i stop

done

fi

# Now run the START scripts for this runlevel.

for i in /etc/rc$runlevel.d/S*

do

[ ! -f $i ] && continue

if [ $previous != N ] && [ $previous != S ]

then

#

# Find start script in previous runlevel and

# stop script in this runlevel.

#

suffix=$

stop=/etc/rc$runlevel.d/K[0-9][0-9]$suffix

previous_start=/etc/rc$previous.d/S[0-9][0-9]$suffix

#

# If there is a start script in the previous level

# and _no_ stop script in this level, we don't

# have to re-start the service.

#

[ -f $previous_start ] && [ ! -f $stop ] && continue

fi

case "$runlevel" in

0|6)

startup $i stop

;;

*)

startup $i start

;;

esac.

...

这个文件可以看出很大一部分是寻找/etc/rc$runlevel.d/K[0-9][0-9]*    和/etc/rc$runlevel.d/S*这些文件来执行。

/etc/rc$runlevel.d/K[0-9][0-9]*  带K的是kill的意思,停止相关脚本运行。

/etc/rc$runlevel.d/S*带S是start的意思,开始相关脚本运行。那如果有两个文件名相同分别但分别带K和S(比如有文件/etc/rc$runlevel.d/K01test和/etc/rc$runlevel.d/S01test同时存在),那么test这个脚本就先停止再重新运行。

现在总结一下整体运行顺序: /etc/inittab  ->  /etc/init.d/rcS  ->  /etc/init.d/rc  ->  /etc/rcS.d文件夹中的脚本。

那我们在哪里增加自己的程序呢,可以在/etc/init.d/rcS这里增加,也可以在 /etc/rcS.d文件夹里增加。通过顺序可以看出/etc/init.d/rcS这个文件顺序在前,/etc/rcS.d会执行一些网络服务,如果自己的应用程序需要这些网络服务那就得在/etc/rcS.d文件里加,来保证程序的先后顺序。

添加文件

有rc.local这个文件

经常可以看到有些介绍让把自启动应用程序放入rc.local这个文件的,这个文件通常是最后启动的,一般在/etc/rcS.d这个文件里(链接文件)。这样的话我们就把自己的文件直接放入根目录下就可以了(可以根据自己的需要更改位置,此处只是举个例子),以下是在rc.local最后添加的程序。

cd /

chmod 777 testfile

./testfile & // &表示此文件在后台运行

testfile就是自己的应用程序,需要赋予权限,rc.local同样也得赋予权限

没有rc.local这个文件

rc.local这个文件可有可没有,但是习惯用它的话把它添加进去就可以了,以添加这个文件为例。

1 把自己的文件直接放入根目录下(可以根据自己的需要更改位置,此处只是举个例子)

2 新建一个rc.local文件,文件名命名为rc.local即可,这是一个LOCAL 文件 (.local)。并为文件添加内容

#!/bin/sh // #!/bin/sh是指此脚本使用/bin/sh来解释执行,#!是特殊的表示符,其后面根的是此解释此脚本的shell的路径。

#

# This script will be executed *after* all the other init scripts.

# You can put your own initialization stuff in here

cd / //文件位置根据自己的需求更改

chmod 777 testfile

./testfile & // &表示此文件在后台运行

将文件放入/etc/init.d文件夹中,为文件赋予权限。

3 将rc.local生成链接文件S999rc.local,并将链接文件放入rc0.d,rc1.d,rc2.d,rc3.d,rc4.d,rc5.d,rc6.d,rcS.d这几个文件夹中。S999rc.local,S是指start,999是在循环的时候在最后执行。放入这几个文件夹是是因为不用考虑程序执行的是哪个文件夹(执行哪个文件夹是runlevel决定的),比较方便。

这样之后rc.local就会自动在最后执行,以后想加文件只改动rc.local这个文件就可以了。

  • 发表于:
  • 原文链接https://kuaibao.qq.com/s/20230215A05OGW00?refer=cp_1026
  • 腾讯「腾讯云开发者社区」是腾讯内容开放平台帐号(企鹅号)传播渠道之一,根据《腾讯内容开放平台服务协议》转载发布内容。
  • 如有侵权,请联系 cloudcommunity@tencent.com 删除。

扫码

添加站长 进交流群

领取专属 10元无门槛券

私享最新 技术干货

扫码加入开发者社群
领券