Results 1 to 9 of 9

Thread: ISO to Flash Drive

  1. #1
    Join Date
    Apr 2007
    Beans
    162

    ISO to Flash Drive

    Hello I wanted to know if there is a simple way burn ISO image to usb flash drive.. I ve used Unetbootin over the years but for some reason it wont install in the latest 18 of Ubuntu.. Just wondering if there are others out there for Linux.. Thanks

  2. #2
    Join Date
    Feb 2010
    Location
    In My Food Forest
    Beans
    9,318

    Re: ISO to Flash Drive

    What OS are you trying this with? I usually use the DD command to put ISOs on USB.

    Code:
    dd if=image.iso of=/dev/sdb bs=4M
    Cheers & Beers, uRock
    [SIGPIC][/SIGPIC]

  3. #3
    Join Date
    Feb 2008
    Location
    Texas
    Beans
    29,807
    Distro
    Ubuntu 20.04 Focal Fossa

    Re: ISO to Flash Drive

    I use startup disk creator and it come installed by default in Ubuntu, I have never had a problem using it, very simple.

  4. #4
    Join Date
    Jun 2009
    Location
    SW Forida
    Beans
    Hidden!
    Distro
    Kubuntu

    Re: ISO to Flash Drive

    I only need UEFI, but this does not work for BIOS boot.

    If UEFI only, then can just extract ISO with 7-zip to FAT32 formatted drive with boot flag on FAT32 partition.
    Will not boot in BIOS mode
    UEFI only USB key, just extract ISO ( 7 zip or similar) to FAT32 formatted flash drive partition & set boot flag.
    http://askubuntu.com/questions/39587...usb-live-media
    UEFI only bootable flash drive
    http://ubuntuforums.org/showthread.php?t=2299040
    https://help.ubuntu.com/community/Installation/iso2usb


    New Windows ISO are now over 4GB, so you cannot directly extract to one FAT32 partition, but have to put boot files in FAT32 and rest in NTFS. Have not done it, so do not know details.


    Most find this works:
    https://help.ubuntu.com/community/mkusb or
    https://wiki.ubuntu.com/Win32DiskImager/iso2usb

    Lots of info on USB boot for installing
    https://help.ubuntu.com/community/In...n/FromUSBStick
    Ubuntu install guide - multiple ways to create live installer to flash drive
    https://help.ubuntu.com/community/Installation
    Updates for ISO to USB.
    https://help.ubuntu.com/community/Installation/iso2usb
    UEFI boot install & repair info - Regularly Updated :
    https://ubuntuforums.org/showthread.php?t=2147295
    Please use Thread Tools above first post to change to [Solved] when/if answered completely.

  5. #5
    Join Date
    Jun 2007
    Location
    Hikkaduwa, Sri Lanka
    Beans
    3,449
    Distro
    Ubuntu 22.04 Jammy Jellyfish

    Re: ISO to Flash Drive

    Do you want to use the USB to install ubuntu? Try a Live or Persistent install using mkusb: https://help.ubuntu.com/community/mkusb
    You can also do a Full install to USB the same as to Internal drive, just unplug the internal drive first.

  6. #6
    Join Date
    Apr 2008
    Location
    Southern California, USA
    Beans
    Hidden!
    Distro
    Ubuntu Development Release

    Re: ISO to Flash Drive

    I'm with @uRock.
    I do it so often I created an 'alias' for it:
    alias hyb='echo "sudo dd if=utopic-desktop-amd64.iso of=/dev/sdc bs=8M"&&lsblk'

    lsblk points to which usb to use.

  7. #7
    Join Date
    Apr 2007
    Beans
    162

    Re: ISO to Flash Drive

    Thank you Everyone!!

  8. #8
    Join Date
    Mar 2010
    Location
    Squidbilly-Land
    Beans
    Hidden!
    Distro
    Ubuntu

    Re: ISO to Flash Drive

    I use dd or ddrescue too. Something like this:

    Code:
    sudo ddrescue /path/to/ubuntu......iso /dev/sdZ  /tmp/log
    ddrescue is handy for other uses where dd fails. It keeps trying to read blocks that stop dd cold. This shouldn't matter with creating a flash drive to boot, but if trying to move data from a failing disk to a new disk, it is invaluable.

    But I don't know if creating an ISO works on anything after 16.04.x. Can't think of a reason it wouldn't, but who knows?
    Last edited by TheFu; July 18th, 2019 at 07:56 PM.

  9. #9
    Join Date
    Feb 2010
    Location
    In My Food Forest
    Beans
    9,318

    Re: ISO to Flash Drive

    Quote Originally Posted by TheFu View Post
    I use dd or ddrescue too. Something like this:

    Code:
    sudo ddrescue /path/to/ubuntu......iso /dev/sdZ  /tmp/log
    ddrescue is handy for other uses where dd fails. It keeps trying to read blocks that stop dd cold.

    But I don't know if it works on anything after 16.04.x. Can't think of a reason it wouldn't, but who knows?
    I will give that a try the next time I go to create a bootable USB and let you know if it worked. I'm going to be testing Debian 10 LXDE on my production system in the next day or two, so we'll see.
    Cheers & Beers, uRock
    [SIGPIC][/SIGPIC]

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •