Christopher Juckins

SysAdmin Tips, Tricks and other Software Tools

User Tools

Site Tools


bootable_usb_drive_from_.iso_file_in_linux

This is an old revision of the document!


Bootable USB Drive from .iso file in Linux

  • Change to directory with .iso file you want to burn to bootable USB drive.
  • Insert USB drive into Linux machine, it should mount if the drive is formatted as FAT32 (it will not recognize NTFS)
  • Perform the following commands
dd if=ubuntu-18.04.2-desktop-amd64.iso of=/dev/sdg

If you wish to see the output/progress of the dd command, use status=progress or a pipe to the 'pv' utility, like this:

dd if=ubuntu-18.04.2-desktop-amd64.iso of=/dev/sdg status=progress
dd if=ubuntu-18.04.2-desktop-amd64.iso | pv | dd of=/dev/sdg
bootable_usb_drive_from_.iso_file_in_linux.1555174419.txt.gz · Last modified: 2019/04/13 12:53 by juckins