linux设置开机自启某个命令

本文介绍在Linux系统中实现开机自启特定指令或shell脚本的方法。通过编辑/etc/rc.local文件添加自定义命令,并设置执行权限,确保系统启动时自动运行。此外,还介绍了如何将shell脚本放置于/etc/profile.d/目录下,实现系统启动时自动执行。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

一 . 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脚本

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值