diff options
author | Michael Reed <top@secret> | 2017-07-02 23:02:18 -0400 |
---|---|---|
committer | Michael Reed <top@secret> | 2017-07-02 23:02:18 -0400 |
commit | 4a103c50128ad1f97dc7d2fe7ec70f880e42fcb4 (patch) | |
tree | 49b3a60d6425233a69ff368cde3366b7fdff2868 /docs/bsd | |
parent | 2d4f8d80a020b28057c87edb72b72b058983d8f1 (diff) | |
download | librebootfr-4a103c50128ad1f97dc7d2fe7ec70f880e42fcb4.tar.gz librebootfr-4a103c50128ad1f97dc7d2fe7ec70f880e42fcb4.zip |
OpenBSD docs: cleanup "prepare USB drive" section
Avoid jargon, add markup where applicable, rewrite for brevity, etc.
Diffstat (limited to 'docs/bsd')
-rw-r--r-- | docs/bsd/openbsd.md | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/docs/bsd/openbsd.md b/docs/bsd/openbsd.md index 5e86bc05..584fefd7 100644 --- a/docs/bsd/openbsd.md +++ b/docs/bsd/openbsd.md @@ -27,21 +27,19 @@ Prepare the USB drive (in LibertyBSD or OpenBSD) If you downloaded your ISO on a LibertyBSD or OpenBSD system, here is how to create the bootable LibertyBSD/OpenBSD USB drive: -Connect the USB drive. Check dmesg: +Connect the USB drive and check the system message buffer: $ dmesg | tail -Check to confirm which drive it is, for example, if you think it's sd3: +Check to confirm which drive it is, for example, if you think it's `sd3`: $ disklabel sd3 -Check that it wasn't automatically mounted. If it was, unmount it. For -example: +Check that it wasn't automatically mounted. If it was, unmount it: $ doas umount /dev/sd3i -dmesg told you what device it is. Overwrite the drive, writing the -OpenBSD installer to it with dd. For example: +Now write the OpenBSD installer to the drive with `dd`: $ doas dd if=install60.fs of=/dev/rsdXc bs=1M; sync |