aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesús <heckyel@hyperbola.info>2020-07-22 18:02:16 -0500
committerJesús <heckyel@hyperbola.info>2020-07-22 18:02:16 -0500
commit953ad019c3dcdbf9f418627002961689e84996d1 (patch)
treed62742ed6dc297a54a11fd397bd63275e00de36e
parentc8d756a47d1dc9825d0964c0f1805ca99b43e871 (diff)
downloadbook-953ad019c3dcdbf9f418627002961689e84996d1.tar.lz
book-953ad019c3dcdbf9f418627002961689e84996d1.tar.xz
book-953ad019c3dcdbf9f418627002961689e84996d1.zip
Add usb-booteable.md
-rw-r--r--install-hyperbola/README.md2
-rw-r--r--install-hyperbola/usb-booteable.md31
2 files changed, 32 insertions, 1 deletions
diff --git a/install-hyperbola/README.md b/install-hyperbola/README.md
index ef625df..6754a74 100644
--- a/install-hyperbola/README.md
+++ b/install-hyperbola/README.md
@@ -30,7 +30,7 @@
- [Comunicación](#comunicación)
- [Impresoras](#impresoras)
-Lo primero a realizar después de ingresar el disco o USB de instalación.
+Lo primero a realizar después de ingresar el disco o [USB de instalación](usb-booteable.md).
Seguimos los siguientes pasos:
### Primeros pasos
diff --git a/install-hyperbola/usb-booteable.md b/install-hyperbola/usb-booteable.md
new file mode 100644
index 0000000..9e58ff3
--- /dev/null
+++ b/install-hyperbola/usb-booteable.md
@@ -0,0 +1,31 @@
+## MRB
+
+It's easy:
+
+ $ dd if=hyperbola-milky-way-v0.2.1-dual.iso of=/dev/sdb bs=1M status=progress && sync
+
+## GPT
+
+1) Create one partition entry in GPT
+
+ # parted <DEV-TARGET>
+
+ (parted) mktable GPT
+
+ (parted) quit
+
+2) Create a FAT32 filesystem on such partition and setup a label.
+
+ # mkfs.vfat -F 32 -n HYPER_v031 <DEV-TARGET-N>
+
+3) Mount target filesystem.
+
+ # mount <DEV-TARGET-N> <MNT-TARGET-N>
+
+4) Extract ISO image on target filesystem.
+
+ # bsdtar -x --exclude=isolinux/ --exclude=EFI/hyperiso/ --exclude=hyperbola/boot/syslinux/ -f <ISO-SOURCE> -C <MNT-TARGET-N>
+
+5) Unmount target filesystem.
+
+ # umount <MNT-TARGET-N>