Download the latest OSE Linux ISO disk image (wiki, Google Drive). Please note there may be two disk images to choose from: a standard disk image and a hybrid disk image (source). The hybrid disk image is preferred.
- Insert USB stick
- Open a Terminal window
- Determine USB stick device ID:
diskutil list
$ diskutil list
...
/dev/disk3 (external, physical):
#: TYPE NAME SIZE IDENTIFIER
0: *16.0 GB disk3
Using a hybrid ISO disk image is by far the simpler approach as you just overwrite the entire USB stick.
- Unmount all partitions on device:
diskutil unmountDisk [Device ID]
- Copy ISO:
sudo dd if=[Path to ISO] of=[Device ID] bs=1048576
- Press CTRL+T to send a SIGINFO signal to
dd
to track progress (source)
- Press CTRL+T to send a SIGINFO signal to
$ diskutil unmountDisk /dev/disk3
Unmount of all volumes on disk3 was successful
$ sudo dd if=~/Downloads/ose0.3isohybrid.iso of=/dev/disk3 bs=1048576
2142+0 records in
2142+0 records out
2246049792 bytes transferred in 1841.710284 secs (1219546 bytes/sec)
The partition is automatically marked as as bootable.
Eject USB Stick: diskutil eject [Device ID]
$ diskutil eject /dev/disk3
Disk /dev/disk3 ejected
And you're good to go.
First, configure the BIOS to prioritize booting from a USB drive. In my case, I'm installing on an HP Spectre x360 laptop (source).
- Power up HP Spectre x360
- Press
F10
to enter the BIOS - Navigate to System Configuration
- Select Boot Options
- Disable Secure Boot
- Enable Legacy Boot
- In UEFI Boot Order move USB Diskette to top of list
- In Legacy Boot Order move USB Diskette to top of list
- Press
F10
to save changes and exit BIOS
Your system will restart, recognize the USB Stick, and boot its contents.
For existing Linux systems with a boot manager installed, you may still need to intervene to select an alternative boot option. Press F9
to enter Boot Options and choose the USB Disk.