linux 开机加载脚本
开机加载脚本
开机自动加载脚本:
开机的时候会自己启动的一些文件。
1.编辑开机自动脚本:
vim /etc/rc.local
2.设置开机自启动权限
chmod +x /etc/rc.d/rc.local
3.重启系统查看结果
# 校验 :
vim /etc/rc.local
进入编辑模式 在末尾写入 echo 'hello world' > /root/index进行校验
chmod +x /etc/rc.d/rc.local
设置可执行的权限
reboot
重启
cat index
打印 helloworld 校验成功
# 开机'自动'将helloworld写入index文件中