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 2 3 4 5 6 7 8 #!/bin/sh if test -d /etc/rc.local.d; then for rcscript in /etc/rc.local.d/*.sh; do test -r "${rcscript} " && sh ${rcscript} done unset rcscriptfi
3.添加执行权限
4.添加/etc/rc.local.d文件夹
5.设置开机自启
1 systemctl enable rc-local.service
sh脚本放在/etc/rc.local.d/
里面就可以了
下面是我放置的开机自启动脚本 /etc/rc.local.d/init.sh
1 2 3 4 5 6 7 8 9 #! /bin/bash rmmod pcspkr figlet "Arch Linux Y9000P 3070Ti Owned By I0gan" xbacklight 60 mount -o remount,rw,exec /dev/nvme1n1p6 su - i0gan -c "nohup /usr/bin/clash >/dev/null &"