なにをしたいか
Raspberry PiにてRaspberry Pi OSを起動させようとしているのですが起動後でなく、 /boot
のドライブに何かのファイルを置いて 初回起動時に設定 させられないかという問題です。
同じネットワーク上に運悪くraspberrypi.localでmDNSを広告しているのがいたときがありそうなので、初期起動の際に回避したいということになります。
環境としては、Win10/macOSにてImagerで書き込んだRaspberry Pi OS(lite版、32ビット)となっております。たぶん64ビット版でも違いは無いと思います。
ためしたこと
wpa_supplicant.conf
やssh.txt
の件があるので、同様のものがないかと
$ grep /boot -R /lib/systemd/system /etc/systemd/system /lib/systemd/system/sshswitch.service:Description=Turn on SSH if /boot/ssh is present /lib/systemd/system/sshswitch.service:ConditionPathExistsGlob=/boot/ssh{,.txt} /lib/systemd/system/sshswitch.service:ExecStart=/bin/sh -c "systemctl enable --now ssh && rm -f /boot/ssh ; rm -f /boot/ssh.txt" /lib/systemd/system/raspberrypi-net-mods.service:ConditionPathExists=/boot/wpa_supplicant.conf /lib/systemd/system/raspberrypi-net-mods.service:ExecStart=/bin/mv /boot/wpa_supplicant.conf /etc/wpa_supplicant/wpa_supplicant.conf /lib/systemd/system/apply_noobs_os_config.service:ConditionPathExists=/boot/os_config.json /etc/systemd/system/multi-user.target.wants/sshswitch.service:Description=Turn on SSH if /boot/ssh is present /etc/systemd/system/multi-user.target.wants/sshswitch.service:ConditionPathExistsGlob=/boot/ssh{,.txt} /etc/systemd/system/multi-user.target.wants/sshswitch.service:ExecStart=/bin/sh -c "systemctl enable --now ssh && rm -f /boot/ssh ; rm -f /boot/ssh.txt" /etc/systemd/system/multi-user.target.wants/raspberrypi-net-mods.service:ConditionPathExists=/boot/wpa_supplicant.conf /etc/systemd/system/multi-user.target.wants/raspberrypi-net-mods.service:ExecStart=/bin/mv /boot/wpa_supplicant.conf /etc/wpa_supplicant/wpa_supplicant.conf
という具合に /boot
のファイルを参照しているユニットがないか確認したのですがダメでした。
もしかすると os_config.json
が鍵かもしれませんが、情報がうまく入手できないのでした。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。