manjaro 设置开机启动脚本


以下命令以root用户执行
1.创建一个启动service脚本

vim /etc/systemd/system/rc-local.service
1
[Unit]
Description="/etc/rc.local Compatibility" 

[Service]
Type=oneshot
ExecStart=/etc/rc.local start
TimeoutSec=0
StandardInput=tty
RemainAfterExit=yes
SysVStartPriority=99

[Install]
WantedBy=multi-user.target

2.创建 /etc/rc.local 文件
vim /etc/rc.local

#!/bin/sh
# /etc/rc.local
if test -d /etc/rc.local.d; then
    for rcscript in /etc/rc.local.d/*.sh; do
        test -r "${rcscript}" && sh ${rcscript}
    done
    unset rcscript
fi

3.添加执行权限

chmod a+x /etc/rc.local

4.添加/etc/rc.local.d文件夹

mkdir /etc/rc.local.d

5.设置开机自启

systemctl enable rc-local.service

结尾:
sh脚本放在/etc/rc.local.d/里面就可以了
from https://blog.csdn.net/u014025444/article/details/90142558


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM