From 584d6f2134e7d79458e9cf834ea85a325ff178be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs?= Date: Fri, 19 Feb 2021 17:16:15 -0500 Subject: [PATCH] [usb-booteable] fix syntax --- install-hyperbola/usb-booteable.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/install-hyperbola/usb-booteable.md b/install-hyperbola/usb-booteable.md index 44670c2..37eaaaf 100644 --- a/install-hyperbola/usb-booteable.md +++ b/install-hyperbola/usb-booteable.md @@ -8,29 +8,29 @@ It's easy: 1) Create one partition entry in GPT - # parted + # parted - (parted) mktable GPT + (parted) mktable GPT - (parted) mkpart primary fat32 1MiB -1 + (parted) mkpart primary fat32 1MiB -1 - (parted) quit + (parted) quit 2) Create a FAT32 filesystem on such partition and setup a label. - # mkfs.vfat -F 32 -n + # mkfs.vfat -F 32 -n 3) Mount target filesystem. - # mount + # mount 4) Extract ISO image on target filesystem. - # bsdtar -x --exclude=isolinux/ --exclude=EFI/hyperiso/ --exclude=hyperbola/boot/syslinux/ -f -C + # bsdtar -x --exclude=isolinux/ --exclude=EFI/hyperiso/ --exclude=hyperbola/boot/syslinux/ -f -C 5) Unmount target filesystem. - # umount + # umount ## Notes