一 . linux开机自启某个指令
步骤1:编辑 /etc/rc.local 文件
vim /etc/rc.local
步骤2:在文件底部加入需要执行的命令,示例如下:
#!/bin/bash
#THIS FILE IS ADDED FOR COMPATIBILITY PURPOSES
#
#It is highly advisable to create own systemd services or udev rules
#to run scripts during boot instead of using this file.
#
#In contrast to previous versions due to parallel execution during boot
#this script will NOT be run after all other services.
#
#Please note that you must run 'chmod +x /etc/rc.d/rc.local' to ensure
#that this script will be executed during boot.
docker container rm --force container_name
docker run
exit 0
保存,reboot 重启,查看命令是否正常执行。
步骤3:设置 /etc/rc.local 文件的执行权限:
chmod +x /etc/rc.local
再次重启,就可以正常自动执行了。
二. 开机自启某个shell脚本
将写好的脚本(.sh文件)放到目录 /etc/profile.d/
下(最好给出脚本的绝对路径),系统启动后就会自动执行该目录下的所有shell脚本