WikiJS/home/linux/create-bootable-usb.md
2025-06-08 22:19:54 +00:00

487 B

title description published date tags editor dateCreated
Create Bootable USB Simple command to create bootable usb true 2025-06-06T12:27:35.410Z markdown 2025-06-06T12:27:33.869Z

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