Archlinux 替换initscript 为systemd方式后,许多服务启动方式已经发生变化。原来的/etc/rc.local已经消失,并被建议使用tmpfiles.d方式替换。但是有些操作tmpfiles.d无法替代。
需要手动写一个rc-local.service 文件。
vim /usr/lib/systemd/system/rc-local.service
内容如下:
[Unit]
Description="/etc/rc.local Compatibility"
[Service]
Type=forking
ExecStart=/etc/rc.local start
TimeoutSec=0
StandardInput=tty
RemainAfterExit=yes
SysVStartPriority=99
[Install]
WantedBy=multi-user.target
启用脚本
systemctl enable rc-local.service
创建启动文件rc.local,
vim /etc/rc.d/rc.local
ln -s /etc/rc.d/rc.local /etc
chmod +x /etc/rc.d/rc.local
输入你的开机执行的操作,例如
hdparm -B199 /dev/sda #解决c1门,卡顿,对于机械硬盘有效,ssd就别了