Ссылки:
1 2 |
https://www.troublenow.org/752/debian-10-add-rc-local/ https://azrr.info/page/view/65-zastavlyaem-rabotat-rclocal-na-debian-10.html |
Решение:
1 2 3 |
!!! Обратите внимание, что это неправильный способ , вероятно, следует создать сервис для вашего скрипта или приложения. В последней версии Debian файл /etc/rc.local устарел, но мы можем добавить его обратно, используя systemd для тех сценариев или приложений, которые все еще зависят от него. |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
Сначала нам нужно создать файл сервиса: cat <<EOF >> /etc/systemd/system/rc-local.service [Unit] Description=/etc/rc.local ConditionPathExists=/etc/rc.local [Service] Type=forking ExecStart=/etc/rc.local start TimeoutSec=0 StandardOutput=tty RemainAfterExit=yes SysVStartPriority=99 [Install] WantedBy=multi-user.target |
После создайте rc.local снова:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
cat <<EOF >> /etc/rc.local #!/bin/sh -e # # rc.local # # This script is executed at the end of each multiuser runlevel. # Make sure that the script will "exit 0" on success or any other # value on error. # # In order to enable or disable this script just change the execution # bits. # # By default this script does nothing. exit 0 |
После:
1 2 3 4 |
chmod +x /etc/rc.local - задайте разрешения на запуск systemctl enable rc-local - включите автозагрузку при старте системы systemctl start rc-local - запустите systemctl status rc-local - проверьте состояние rc-local |