Results 1 to 8 of 8

Thread: UNetbootin fails to create LiveUSB for Saucy ISOs

Hybrid View

  1. #1
    Join Date
    Oct 2009
    Location
    Sydney
    Beans
    4,301
    Distro
    Ubuntu 20.04 Focal Fossa

    Exclamation UNetbootin fails to create LiveUSB for Saucy ISOs

    Hi,

    I am testing many Ubuntu Variants for this Cycle (Lubuntu, Xubuntu, Ubuntu-GNOME) and I can not create LiveUSB using UNetbootin, I have to do that using 'dd' because even the disk creator fails.

    I have created this bug:
    https://bugs.launchpad.net/ubuntu/+bug/1201091

    Am I the only one?

  2. #2
    Join Date
    Apr 2006
    Location
    New Hampshire, U.S.A.
    Beans
    2,604
    Distro
    Ubuntu Development Release

    Re: UNetbootin fails to create LiveUSB for Saucy ISOs

    I boot the development test iso's directly from the hard disk.
    zsync the .iso and put it into the first directory of a partition.
    Example below uses partition 6 on the boot hard drive
    Code:
    sudo gedit /etc/grub.d/40_custom
    #!/bin/sh
    exec tail -n +3 $0
    # This file provides an easy way to add custom menu entries.  Simply type the
    # menu entries you want to add after this comment.  Be careful not to change
    # the 'exec tail' line above.
    menuentry "saucy64 13.10" {
    set isofile="/saucy-desktop-amd64.iso"
    loopback loop (hd0,6)$isofile 
    linux (loop)/casper/vmlinuz.efi boot=casper iso-scan/filename=$isofile noprompt noeject
    initrd (loop)/casper/initrd.lz
    }
    save
    exit
    sudo chmod 777 /etc/grub.d/40_custom
    sudo update-grub
    sudo grub-install /dev/sda            (whatever /dev/sd? you boot from)
    sudo reboot
    Faster for me than creating a USB. Of course, does not test the ability/inability of whatever you're using to create a USB.
    Sometimes it's /casper/vmlinuz.efi and sometimes it's /casper/vmlinuz. With file manager select the .iso, which may allow you to browse the .iso to see which vmlinuz it is.

    After rebooting, the grub entry you just made with 40_custom should be on the bottom.
    Select & see if it boots....
    Play with the live image if you wish.
    Then
    Ctrl-Alt-t
    to get a terminal session
    df
    to see which /dev is the isodevice, no surprise in this case /dev/sdb6
    sudo umount -rl /dev/sdb6 (that's lower case RL)
    exit the terminal session if you wish
    open the install.

    A bit long winded to read about after doing this a bunch of times I usually remember everything...
    With test notebook, netbook, and desktop I'm installing every couple weeks - more lately playing with mir & unity8. Conclusion: not ready for my level yet.

    Note, I'm testing saucy on a USB hard drive, an SSD.
    The pc is set up to boot on the USB so during boot grub thinks the USB is /dev/sda
    After boot, file manager, gparted, and install show it as /dev/sdb
    Go figure.
    BTW, if you intend to boot off a USB hard drive like I do, watch that install puts the boot image on /dev/sdb. Whatever your setup is.
    Also you can have multiple 40_custom entries for multiple .iso's. Repeat and modify everything from menuentry to the final }

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

    Re: UNetbootin fails to create LiveUSB for Saucy ISOs

    I also directly boot ISO like jerrylamos.

    But I only have a small configfile in my 40_custom, and then can edit the configfile at will without having to remember to run the sudo update-grub which I invariably forget to rerun. Then I have many ISO boot entries in configfile which are the same boot entries as I would have in 40_custom.

    Code:
    menuentry 'Live ISOs' {
    configfile (hd2,4)/iso/livecdimage.cfg
    }
    I have found that boot drive from BIOS is always hd0 in grub. But other drives then are in port order from SATA ports on motherboard. And when I installed new drives I skipped a port and now if I plug in a flash drive it becomes that port, otherwise the next drive is that port. Or it can be confusing and which drive's MBR I boot from may change the configfile entry of (hd2,4) to a different hd.
    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.

  4. #4
    Join Date
    Apr 2006
    Location
    New Hampshire, U.S.A.
    Beans
    2,604
    Distro
    Ubuntu Development Release

    Re: UNetbootin fails to create LiveUSB for Saucy ISOs

    Quote Originally Posted by oldfred View Post
    I have found that boot drive from BIOS is always hd0 in grub. But other drives then are in port order from SATA ports on motherboard. And when I installed new drives I skipped a port and now if I plug in a flash drive it becomes that port, otherwise the next drive is that port. Or it can be confusing and which drive's MBR I boot from may change the configfile entry of (hd2,4) to a different hd.
    My desktop has a sata drive and a ide drive. Used to be no trouble with ubuntu, until about 12.04 where ubuntu can't figure out which is sda and which is sdb and which is hd0 and which is hd1 and changes which is which sometimes even during boot. I've tried setting bios either way and ubuntu is still confused. I used to just use 10.04 lucid to do update-grub grub-install since lucid can figure out what's going on. however, with 10.04's grub the 13.xx's wind up with a horribly confusing grub entry and even duplicates.

    Yeh, I entered launchpad bugs, nobody interested.

    So I just put up with it.

  5. #5
    Join Date
    Jun 2009
    Location
    0:0:0:0:0:0:0:1
    Beans
    5,169
    Distro
    Kubuntu

    Re: UNetbootin fails to create LiveUSB for Saucy ISOs

    i have a usb with grub on it
    on Ubutu and Ubuntu Gnome /casper/vmlinuz does not exist but /casper/vmlinuz.efi does (3ed line form the end of the code i posted)
    grub.cfg:
    Code:
    set timeout=3
    set default=0
    
    menuentry "Xubuntu 13.10 Desktop ISO AMD64" {
     loopback loop /saucy-desktop-amd64.iso
     linux (loop)/casper/vmlinuz boot=casper iso-scan/filename=/saucy-desktop-amd64.iso noeject noprompt splash --
     initrd (loop)/casper/initrd.lz
    }
    start at step III
    http://www.pendrivelinux.com/boot-mu...2-using-linux/

    once you are done all you do is replace the iso to update it

    i have a multiboot 32gb usb for stable releases
    Last edited by pqwoerituytrueiwoq; July 15th, 2013 at 01:23 AM.
    Laptop: ASUS A54C-NB91 (Storage: WD3200BEKT + MKNSSDCR60GB-DX); Desktop: Custom Build - Images included; rPi Server
    Putting your Networked Printer's scanner software to shame PHP Scanner Server
    I frequently edit my post when I have the last post

  6. #6
    Join Date
    Aug 2010
    Location
    Arizona USA
    Beans
    3,001
    Distro
    Ubuntu Development Release

    Re: UNetbootin fails to create LiveUSB for Saucy ISOs

    Glad I followed that bug. Official PPA version is way behind.

    Code:
    vindsl@Zuul:~$ apt-cache policy unetbootin
    unetbootin:
      Installed: 575-1ubuntu1
      Candidate: 575-1ubuntu1
      Version table:
     *** 575-1ubuntu1 0
            500 http://archive.ubuntu.com/ubuntu/ saucy/universe i386 Packages
            100 /var/lib/dpkg/statu

    Latest build: 585-1~saucy1
    Intel ® P4 Extreme Edition 3.4 (Gallatin) || DFI ® LanParty PRO875B rev B1
    Crucial ® Ballistix Tracer PC4000 1GB || Mountain Mods U2-UFO Opti-1203
    XFX 7600GT 560M AGP (PV-T73A-UDF3) || Corsair HX520W Modular PSU

  7. #7
    Join Date
    Nov 2011
    Location
    /dev/root
    Beans
    Hidden!

    Re: UNetbootin fails to create LiveUSB for Saucy ISOs

    Quote Originally Posted by amjjawad View Post
    Hi,

    I am testing many Ubuntu Variants for this Cycle (Lubuntu, Xubuntu, Ubuntu-GNOME) and I can not create LiveUSB using UNetbootin, I have to do that using 'dd' because even the disk creator fails.

    I have created this bug:
    https://bugs.launchpad.net/ubuntu/+bug/1201091

    Am I the only one?
    Probably Unetbootin is not ready for Saucy.

    The dd method has a high success rate provided there are no typing errors But the file system is read only, you won't get any persistence.

    Will usb-creator-gtk work for you with the addition of two packages according to this link?

    http://ubuntuforums.org/showthread.p...1#post12683981

    Or does usb-creator-kde work for you?

    Please let me know your results with the usb-creator!

  8. #8
    Join Date
    Oct 2009
    Location
    Sydney
    Beans
    4,301
    Distro
    Ubuntu 20.04 Focal Fossa

    Re: UNetbootin fails to create LiveUSB for Saucy ISOs

    Hi,

    The latest version of UNetbootin - http://launchpad.net/~gezakovacs/+archive/ppa
    So far, works like a charm with 13.10 BUT I have not yet tested/tried that on 13.04 ISOs as of now.

    Thanks!

Tags for this Thread

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
  •