1
24.1 Legacy Series / Re: Unable to create a bootable USB on MacOS
« on: April 03, 2024, 05:48:05 pm »On Mac OS you can write the image with dd in a Terminal. 100% reliable and no extra software needed.
1. Insert USB drive, start Disk Utility, select USB drive, Cmd-i for info, memorize disk unit (disk2, disk3, or similar), click on "deactivate" in the tool bar (not "eject"!)
...
This is exactly what is described in an official docs and I started off with. Anyway, I will give it one more try with a fresh download.
Code: [Select]
jakub@Jakubs-MacBook-Air Downloads % diskutil unmountdisk disk4
Unmount of all volumes on disk4 was successful
jakub@Jakubs-MacBook-Air Downloads % bzip2 -dc OPNsense-24.1-vga-amd64.img.bz2 | sudo dd of=/dev/disk4 bs=1m
0+123213 records in
2283+1 records out
2394402816 bytes transferred in 601.180059 secs (3982838 bytes/sec)
No change on station's side, BIOS = cannot authenticate.
Sounds more like an issue with the machine trying to boot from the USB flash drive. Is that in UEFI or legacy BIOS mode? If UEFI, did you disable Secure Boot?
Cheers
Maurice
UEFI -- Secure Boot -- OMG, that was it, thanks!
Out of curiosity, I've tried installation of pfSense. According to their Docs, they recommend balenaEtcher for creation of bootable USB, so I followed that (`dd` command is offered as an alternative too). I left BIOS with previous configuration - Secure Boot Enabled - and it resulted in same message.
I was unable to find information about this on both, the OPNsense as well as pfSense Docs - isn't it something worth mentioning, perhaps as a warning callout? Or is it such a common knowledge, I did not know about?