linux开机自动启动脚本放在哪儿?
在/etc/rc.local中添加如果不想将脚本粘来粘去,或创建链接什么的,则:step1.先修改好脚本,使其所有模块都能在任意目录启动时正常执行;step2.再在/etc/rc.local的末尾添加一行以绝对路径启动脚本的行;如:$ vim /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. /etc/rc.d/rc.tune/opt/pjt_test/test.pl保存并退出;
linux如何开机自动运行sh脚本?
要开机 运行只需将它加入到 rc.local ,一般为/etc/rc.d/rc.local 在其中加入以下行:
sh /path/to/test.sh
使用linux全局变量$?可以确定是否执行,如
if
then
echo “succeed!”
fi
#modified some typo –update @22:48