From 99769246e4947bb6b2352d677cc1aacfb76552f3 Mon Sep 17 00:00:00 2001 From: Cheeks Date: Mon, 8 Jul 2024 02:49:41 +0000 Subject: [PATCH] docs: create home/linux/create-bootable-usb --- home/linux/create-bootable-usb.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 home/linux/create-bootable-usb.md diff --git a/home/linux/create-bootable-usb.md b/home/linux/create-bootable-usb.md new file mode 100644 index 0000000..092a777 --- /dev/null +++ b/home/linux/create-bootable-usb.md @@ -0,0 +1,22 @@ +--- +title: Create Bootable USB +description: Simple command to create bootable usb +published: true +date: 2024-07-08T02:49:39.215Z +tags: +editor: markdown +dateCreated: 2024-07-08T02:49:39.215Z +--- + +# Create Bootable USB Stick +### Steps: +1. Download desired iso and navigate to iso folder. +2. Insert USB Drive +3. Enter the following command: +``` +sudo dd if=/path/to/iso of=/dev/sdx bs=512 status=progress && sync +``` +#### Reference: +`if = input file` +`of = output file` +`bs = block size`