Linux自启动执行程序教程 (linux 启动后执行)
作为一款开放性操作系统,Linux通常会让用户优化系统,更好地使用其所提供的功能。自启动程序是其中一项让用户感到方便的功能,因为只要配置好,用户便可以在系统启动后无需手动操作程序。在这篇文章中,我们将向大家分享Linux自启动执行程序的教程。
之一步:编写需要自启动的脚本
在开始配置自启动程序之前,首先需要编写需要自启动的脚本。这个脚本可以是各种形式的文件,比如Python脚本、Shell脚本、或是其他的可执行文件。本例中,我们以Shell脚本为例,以下是示例代码:
#!/bin/bash
echo “hello world”
保存为example.sh文件。
第二步:将脚本放置到指定目录
将刚刚编写的脚本放置到以下目录中的任意一个:
/etc/init.d/
/etc/rc.d/init.d/
/usr/local/etc/rc.d/
/usr/local/etc/rc.d/inetd/
/etc/network/if-up.d/
/etc/network/if-down.d/
/etc/ppp/ip-up.d/
/etc/ppp/ip-down.d/
/etc/apm/event.d/
/etc/acpi/events/
/etc/acpi/actions/
/etc/acpi/default.sh
第三步:授予权限
为了确保脚本可以被执行,还需要授予脚本相应的权限。在终端中,执行以下命令,可以将刚刚创建的脚本赋予可执行权限:
$ sudo chmod +x example.sh
第四步:添加启动服务
在Linux系统中有一个init系统,其主要作用是在系统启动时运行开机脚本和服务。为了使脚本在系统启动后自动启动,我们需要将其加入到init系统的服务列表中。
将以下内容复制到新建的/etc/init.d/example文件中:
#!/bin/sh
### BEGIN INIT INFO
# Provides: example
# Required-Start: $local_fs $network $named $time $syslog
# Required-Stop: $local_fs $network $named $time $syslog
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Description: Start and Stop the Example Daemon
### END INIT INFO
# Source function library.
. /etc/rc.d/init.d/functions
# Define daemon and set permissions
DAEMON=/usr/local/bin/example
NAME=example
DAEMON_OPTS=””
DAEMON_USER=root
# Choose user and group as well as log file name
PIDFILE=/var/run/$NAME.pid
LOGFILE=/var/log/$NAME.log
function check_for_root() {
if [ $(id -u) != 0 ]; then
printf “You have to be root to run this script.\n”
exit 1
fi
}
function check_for_daemon() {
if [ ! -x “$DAEMON” ]; then
printf “Executable $DAEMON does not exist, please check.\n”
exit 1
fi
}
function start() {
check_for_root
if [ -f $PIDFILE ] && kill -0 $(cat $PIDFILE); then
echo ‘Service already running’ >&2
return 1;
fi
echo ‘Starting service…’ >&2
local CMD=”$DAEMON $DAEMON_OPTS >> $LOGFILE & echo \$!”
sh -c “$CMD” > “$PIDFILE”
echo ‘Service started’ >&2
}
function stop() {
check_for_root
if [ ! -f “$PIDFILE” ] || ! kill -0 $(cat “$PIDFILE”); then
echo ‘Service not running’ >&2
return 1;
fi
echo ‘Stopping service…’ >&2
kill -15 $(cat “$PIDFILE”) && rm -f “$PIDFILE”
echo ‘Service stopped’ >&2
}
function status() {
check_for_root
if [ ! -f “$PIDFILE” ] || ! kill -0 $(cat “$PIDFILE”); then
echo ‘Service not running’ >&2
return 1;
fi
echo ‘Service running’ >&2
}
function reload() {
check_for_root
if [ ! -f “$PIDFILE” ] || ! kill -0 $(cat “$PIDFILE”); then
echo ‘Service not running’ >&2
return 1;
fi
echo ‘Reloading configuration…’ >&2
kill -HUP $(cat “$PIDFILE”) && echo ‘Service reloaded’ >&2
}
case “$1” in
start)
start
;;
stop)
stop
;;
status)
status
;;
reload)
reload
;;
*)
echo “Usage: $0 {start|stop|status|reload}”
esac
exit 0
在该文件中,以下参数需要进行更改:
– DAEMON:需要启动的脚本路径。
– NAME:自定义服务名称。
– DAEMON_USER:脚本需要运行的用户。
– PIDFILE:记录pid的文件的路径和名称。
– LOGFILE:记录日志文件的位置和名称。
– Required-Start和 Required-Stop:在此指定的其他服务必须在此服务之前启动,才能确保所有先决条件均得到满足。
– Default-Start和Default-Stop:自动启动/停止级别。
第五步:启动服务
在终端中执行以下命令,即可启动该服务:
$ sudo service example start
打开日志文件,确保服务已成功启动:
$ sudo tl -f /var/log/example.log
同时,也可以通过以下命令来停止服务:
$ sudo service example stop
如果需要检查当前服务状态:
$ sudo service example status
如果要重新加载脚本设置,可以执行以下命令:
$ sudo service example reload
现在,已经成功地将Linux自启动执行程序添加到系统中。无论您何时启动计算机,该程序都会自动启动,方便快捷。