diff options
author | Alyssa Rosenzweig <alyssa@rosenzweig.io> | 2017-04-03 09:57:13 -0700 |
---|---|---|
committer | Alyssa Rosenzweig <alyssa@rosenzweig.io> | 2017-04-03 09:57:13 -0700 |
commit | 7bc11816a44e8cd2712e46dc958795d354856419 (patch) | |
tree | 0206787656028e2ba01966c95f7104d429e10bc6 /docs/bsd/netbsd.md | |
parent | a19ff95539b0f9df2a59abef64f0decf999103f2 (diff) | |
download | librebootfr-7bc11816a44e8cd2712e46dc958795d354856419.tar.gz librebootfr-7bc11816a44e8cd2712e46dc958795d354856419.zip |
Fix yet another class of codeblock bugs -- Leah really has no consitency..
Diffstat (limited to 'docs/bsd/netbsd.md')
-rw-r--r-- | docs/bsd/netbsd.md | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/docs/bsd/netbsd.md b/docs/bsd/netbsd.md index 286d9495..ff515c40 100644 --- a/docs/bsd/netbsd.md +++ b/docs/bsd/netbsd.md @@ -56,17 +56,17 @@ If you downloaded your ISO on a LibertyBSD or NetBSD system, here is how to create the bootable NetBSD USB drive: Connect the USB drive. Check dmesg:\ -**\$ dmesg | tail**\ + $ dmesg | tail Check to confirm which drive it is, for example, if you think its sd3:\ -**\$ disklabel sd3** + $ disklabel sd3 Check that it wasn't automatically mounted. If it was, unmount it. For example:\ -**\$ doas umount /dev/sd3i**\ + $ doas umount /dev/sd3i dmesg told you what device it is. Overwrite the drive, writing the NetBSD installer to it with dd. For example:\ -**\$ doas netbsd.iso of=/dev/rsdXc bs=1M; sync**\ + $ doas netbsd.iso of=/dev/rsdXc bs=1M; sync You should now be able to boot the installer from your USB drive. Continue reading, for information about how to do that. @@ -80,19 +80,19 @@ If you downloaded your ISO on a GNU+Linux system, here is how to create the bootable NetBSD USB drive: Connect the USB drive. Check dmesg:\ -**\$ dmesg**\ + $ dmesg Check lsblk to confirm which drive it is:\ -**\$ lsblk** + $ lsblk Check that it wasn't automatically mounted. If it was, unmount it. For example:\ -**\$ sudo umount /dev/sdX\***\ -**\# umount /dev/sdX\*** + $ sudo umount /dev/sdX\* + # umount /dev/sdX\* dmesg told you what device it is. Overwrite the drive, writing your distro ISO to it with dd. For example:\ -**\$ sudo dd if=install60.fs of=/dev/sdX bs=8M; sync**\ -**\# dd if=netbsd.iso of=/dev/sdX bs=8M; sync** + $ sudo dd if=install60.fs of=/dev/sdX bs=8M; sync + # dd if=netbsd.iso of=/dev/sdX bs=8M; sync You should now be able to boot the installer from your USB drive. Continue reading, for information about how to do that. |