new-install

Notes on OS intalls
git clone https://git.bracken.jp/new-install.git
Log | Files | Refs | LICENSE

commit ad40998a7360adb2b8d079184b6c25220704e518
parent b76f54403d8d29669a3ebe6f654251cba6c03572
Author: Chris Bracken <chris@bracken.jp>
Date:   Sat, 10 Dec 2022 11:32:42 -0800

OpenBSD: document creating flash drive on macOS

Adds instructions on how to write the OpenBSD ISO to a USB stick on
macOS, since it's different from every other Unix.

Diffstat:
Mopenbsd_install.md | 23+++++++++++++++++++++++
1 file changed, 23 insertions(+), 0 deletions(-)

diff --git a/openbsd_install.md b/openbsd_install.md @@ -3,6 +3,29 @@ OpenBSD Install Last updated for OpenBSD 7.2. +Writing to a flash drive on macOS +--------------------------------- +``` +% cd /tmp +% export URL=https://cdn.openbsd.org/pub/OpenBSD +% curl -Os $URL/7.2/amd64/SHA256 +% curl -Os $URL/7.2/amd64/install72.img +% shasum -c SHA256 --ignore-missing +install72.img: OK +% sudo diskutil list +/dev/disk4 (external, physical): + #: TYPE NAME SIZE IDENTIFIER + 0: FDisk_partition_scheme *16.0 GB disk4 +... + (free space) 15.6 GB - + +% sudo diskutil unmountDisk /dev/diskX +% sudo dd if=install69.img of=/dev/diskX bs=1m +664+1 records in +664+1 records out +696745984 bytes transferred in 93.000559 secs (7491847 bytes/sec) +``` + Initial install ---------------