How to write ISO image to usb memory stick from linux command-line?

137,872

Solution 1

I know you can do this in UNetbootin gui. I haven't tried it myself, but it looks like you can do it by command-line, as well:

http://sourceforge.net/apps/trac/unetbootin/wiki/commands

unetbootin method=diskimage isofile="my.iso" installtype=USB targetdrive=/dev/sdc1

Solution 2

Are you sure if the ISO image will work on a USB device? Some ISOs which will boot if they are on a CD/DVD will not actually boot from a USB device.

Assuming the ISO you want has a bootloader that will work, then it should be as simple as dd if=filename.iso of=/dev/usbdevice but this will replace anything that is currently on the USB disk.

If you wanted to place the ISO onto an existing filesystem on the USB drive and boot it, then setting it up may be a lot more complicated.

Solution 3

From Linux there's a very easy way to create a bootable memory stick from an ISO image -- and this should work for any OS. Assuming the memory stick is /dev/sdb and the image is /home/username/Downloads/system.iso.

Just do this (as root):

dd if=/home/username/Downloads/system.iso of=/dev/sdb

Much easer than unetbootin or any other method I've heard of.

Solution 4

I use the following procedure:

1. Reading the block size and the volume size:

[root@testserver ~]# isoinfo -d -i /path_to_iso | grep -i -E 'block size|volume size' 
Logical block size is: 2048
Volume size is: 327867

2. Running dd with the parameters for block size and volume size:

root@testserver ~]# dd if=/path_to_iso of=/dev/your_usb_device bs=block-size-from-above count=volume-size-from-above
Share:
137,872

Related videos on Youtube

mikepurvis
Author by

mikepurvis

Updated on September 18, 2022

Comments

  • mikepurvis
    mikepurvis almost 2 years

    I'm having trouble figuring out how I would write an ISO disk image to a USB flash memory device from the command line in Ubuntu. I have the Startup Disk Creator utility, but I need to be able to script this job.

    I found the usb-creator package, but there doesn't seem to be any documentation and python -m usbcreator gives usbcreator is a package and cannot be directly executed.

    I looked at unetbootin, but it seems like another GUI-only utility.

    Is there some obvious solution which I'm overlooking?

  • Steve Townsend
    Steve Townsend almost 13 years
    ^ the answer I was going to give. unetbootin automagically handles the necessary steps for moving most ISO files to USB media.
  • mikepurvis
    mikepurvis almost 13 years
    Nope, this is perfect; exactly what I needed. Thanks!
  • Zoredache
    Zoredache almost 13 years
    As I mentioned it does somewhat depend on what boot-loader is present on the ISO and how it is configured. Some images will work just by doing a dd, others will not. For example a Debian Live will work fine by using the dd method. To be sure you can try it, or read the docs for whatever iso you are talking about to see if it is supported.
  • mikepurvis
    mikepurvis over 11 years
    This assumes the bootloader is included in the iso, which is not generally the case.
  • sjas
    sjas over 9 years
    Only important step is to write of / outputfile to device, not a partition. I.e. of=/dev/sdb and NOT of=/dev/sdb1. (Just wanted to comment on this problem, nothing is wrong with your post :o))
  • Yaroslav Nikitenko
    Yaroslav Nikitenko over 8 years
    For me on Fedora Core 23 it launches unetbootin gui but with the settings provided on the command line.
  • unfa
    unfa over 6 years
    This worked for me when trying to install Debian 9 on an old Asus Eee PC netbook. Unetbootin produced drives that didn't boot at all in this case.