O Arch pode não ter incluído o arquivo da unidade de serviço necessário para executar rc.local
.
Basta criar um arquivo /etc/systemd/system/rc-local.service
com o seguinte conteúdo (copiado textualmente do meu sistema systemd do Fedora):
# This file is part of systemd. # # systemd is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. [Unit] Description=/etc/rc.local Compatibility ConditionPathExists=/etc/rc.local [Service] Type=forking ExecStart=/etc/rc.local start TimeoutSec=0 StandardOutput=tty RemainAfterExit=yes SysVStartPriority=99
Em seguida, basta executar systemctl enable rc-local.service
como root para ativá-lo. Você também pode testá-lo / executá-lo agora executando systemctl start rc-local.service
.