linux-config-startup-script

First Post:

Last Update:

Word Count:
173

Read Time:
1 min

Archlinux 如何设置自己的开机脚本

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

1
vim /etc/systemd/system/rc-local.service

1
2
3
4
5
6
7
8
9
10
11
12
13
[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 文件

1
vim /etc/rc.local

1
2
3
4
5
6
7
8
#!/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.添加执行权限

1
chmod a+x /etc/rc.local

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

1
mkdir /etc/rc.local.d

5.设置开机自启

1
systemctl enable rc-local.service

sh脚本放在/etc/rc.local.d/里面就可以了

打赏点小钱
支付宝 | Alipay
微信 | WeChat