侧边栏壁纸
博主头像
落叶人生博主等级

走进秋风,寻找秋天的落叶

  • 累计撰写 130562 篇文章
  • 累计创建 28 个标签
  • 累计收到 9 条评论
标签搜索

目 录CONTENT

文章目录

自定义开机启动脚本

2023-12-19 星期二 / 0 评论 / 0 点赞 / 126 阅读 / 998 字

很多程序脚本系统都会开机启动,我们怎么设置自己的开机启动脚本,让linux自动执行? 在/etc/rc.local 里面进行设置,例如 #!bin/sh # # # while true do ech

很多程序脚本系统都会开机启动,我们怎么设置自己的开机启动脚本,让linux自动执行?

 在/etc/rc.local  里面进行设置,例如

#!bin/sh
#
#
#
while true
do
echo `date` >> /tmp/1.txt
sleep 5
done

先编写一个简单的shell脚本在/etc/rc.local里面编辑

#!/bin/sh
#
# This script will be executed *after* all the other init scripts.
# You can put your own initialization stuff in here if you don't
# want to do the full Sys V style init stuff.

touch /var/lock/subsys/local
/bin/sh /root/test.sh &

系统重启,就自动执行

特别注意:在配置后面一定要跟上&符号,否则重启系统无法正常启动。如果无法启动可以采用单用户模式在上面自定义的执行语句后面加上&符号

 

 

 

 

 

广告 广告

评论区