centOS7 设置shell脚本开机自启动

    1. 期望开机运行的脚本:/root/test/mkfolder.sh

      1. mkdir test
    2. 在目录:/etc/rc.d/init.d 下放置开机运行脚本 test.sh

      1. # 赋权
      2. chmod +x test.sh
    3. 编辑 /etc/rc.d/rc.local,在末尾增加脚本的绝对路径

      1. /root/test/mkfolder.sh
    4. 添加脚本到开机自启动

      1. cd /etc/rc.d/init.d
      2. chkconfig --add test.sh
      3. chkconfig test.sh
    5. 如需测试

      1. reboot

    参考