web-dev-qa-db-ja.com

Debian 9(Debian Stretch)のrc.localはどこにありますか

Debianの最新の安定バージョンDebian Stretchには/etc/rc.localがないようです。それはどこにある? /etc/rc.localは廃止されましたか?

35

rc.localは非推奨です。

それでもまだあるようです:

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
EOF
chmod +x /etc/rc.local
systemctl daemon-reload
systemctl start rc-local
systemctl status rc-local
● rc-local.service - /etc/rc.local Compatibility
   Loaded: loaded (/lib/systemd/system/rc-local.service; static; vendor preset: enabled)
  Drop-In: /lib/systemd/system/rc-local.service.d
           └─debian.conf
   Active: inactive (dead)
Condition: start condition failed at Wed 2017-06-28 11:32:36 UTC; 3min 13s ago

ベンダープリセットを有効にする必要があります。いくつかのecho 123 >/proofをrc.localに追加して再起動し、動作することを確認します。EC2で最後のDebian Stretch AMIを使用して、動作することを確認します...

56
SYN

/etc/init.d/rc.localが存在しないため、/ etc/init.d/rc.localから/etc/rc.localが呼び出されません(少なくとも、今日インストールしたばかりのDebianストレッチシステムでは)。そのシステムで。

0
Ged Haywood