-
Notifications
You must be signed in to change notification settings - Fork 125
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
headless bookworm install, no wifi setup #832
Comments
Since the introduction of bookworm and the Pi5, many things have unfortunately broken. |
Thanks for your reply, I understand. Btw, maybe the following may be interesting for you (if you didn't see it yet): Btw, for now I did it manually, connected ethernet cable and used these commands via ssh:
|
This is the way I performed the initial WiFi and ssh configuration of a headless system after installing the Bookworm version of Raspberry Pi OS via PINN:
umount /mnt
mount /dev/mmcblk0p7 /mnt
chroot /mnt
mount -t proc proc /proc
/usr/lib/raspberrypi-sys-mods/imager_custom set_hostname <my hostname>
/usr/lib/raspberrypi-sys-mods/imager_custom set_wlan <SSID> <password>
/usr/lib/raspberrypi-sys-mods/imager_custom enable_ssh
raspi-config nonint do_change_pass
exit
umount /mnt/proc
umount /mnt Continuing with the rescue shell, enable the OS to start at boot (instead of VNC/ssh to PINN): mount /dev/mmcblk0p1 /mnt
echo "boot_partition=6" > /mnt/autoboot.txt
umount /mnt
sync
|
Thanks for sharing your steps @Ircama ! |
Hi, I used to use PINN to easily manage and reinstall OS's on completely headless RPi's, it always worked great and Wifi used to be setup automatically by PINN, however since Bookworm this seems not done anymore, I did check and it seems Bookworm doesn't accept wpa_supplicant.conf anymore, I guess this is why PINN can't setup Wifi details anymore, however there must be another way to do it (I don't know yet how) as the official RPi USB Installer apparently allows to setup Wifi details, would it be possible you get this working for PINN also to automatically setup Wifi?
The text was updated successfully, but these errors were encountered: