我们常在windows上开机自动启动一些程序,但liunx大多会是二进制文件,我们会添加些启动的脚本来启动它。那么liunx上重启后自动启行程序是怎么实现的。那么我们介绍如下的三种方法,非常实用。
一、修改/etc/rc.d/rc.local文件
/etc/rc.d/rc.local
文件会在 Linux 系统各项服务都启动完毕之后再被运行。所以你想要自己的脚本在开机后被运行的话,可以将自己脚本路径加到该文件里。
先确保权限
$ chmod +x /etc/rc.d/rc.local
演示:
$ vim auto_run_script.sh
#!/bin/bash
date >> /home/alvin/output.txt
hostname >> /home/alvin/output.txt
保存退出后,赋予可执行权限
$ chmod +x auto_run_script.sh
添加到rc.local
文件末尾,然后重启
二、使用crontab
crontab 是 Linux 下的计划任务,当时间达到我们设定的时间时,可以自动触发某些脚本的运行。
我们可以自己设置计划任务时间,然后编写对应的脚本。但是,有个特殊的任务,叫作 @reboot
,我们其实也可以直接从它的字面意义看出来,这个任务就是在系统重启之后自动运行某个脚本。
演示:
$ crontab -e
@reboot /home/alvin/auto_run_script.sh
然后,直接重启即可。运行的效果跟上面类似。
三、 使用 systemd 服务
以上介绍的两种方法,在任何 Linux 系统上都可以使用。但本方法仅适用于 systemd 系统。如何区分是不是 systemd 系统?很简单,只需运行 ps aux
命令,查看 pid 为 1 的进程是不是 systemd 。
为了实现目的,我们需要创建一个 systemd 启动服务,并把它放置在 /etc/systemd/system/
目录下。
我们创建的 systemd 启动服务如下。请注意,这时后缀是 .service
,而不是 .sh
。
$ vim auto_run_script.service
[Unit]
Description=Run a Custom Script at Startup
After=default.target
[Service]
ExecStart=/home/alvin/auto_run_script.sh
[Install]
WantedBy=default.target
从服务的内容可以看出来,我们最终还是会调用 /home/alvin/auto_run_script.sh
这个脚本。
然后,我们再把这个脚本放置在 /etc/systemd/systerm/
目录下,之后我们再运行下面两条命令来更新 systemd 配置文件,并启动服务。
$ systemctl daemon-reload
$ systemctl enable auto_run_script.service
最后重启系统。
转载链接:https://www.jianshu.com/p/80f4c90cb109