From 850876aa17d1a0644aa146ff0888654285d9ed26 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=9Eahin=20Akkaya?= Date: Thu, 24 Nov 2022 14:09:04 +0300 Subject: [PATCH] TIL: Creating a multiboot usb --- system/creating-a-multiboot-usb.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 system/creating-a-multiboot-usb.md diff --git a/system/creating-a-multiboot-usb.md b/system/creating-a-multiboot-usb.md new file mode 100644 index 0000000..468bd0d --- /dev/null +++ b/system/creating-a-multiboot-usb.md @@ -0,0 +1,11 @@ +You can prepare multiboot usb with `ventoy`. On arch, install `ventoy-bin`. + +Then install ventoy to your usb with +``` +sudo /opt/ventoy/Ventoy2Disk.sh -i /dev/sdc +``` +By default it will format /dev/sdc1 with ext4. You can change it if you like: +``` +sudo mkntfs --fast --label Ventoy /dev/sdc1 +``` +From now on, you can basically copy iso files to your usb stick.