How to create UEFI-only bootable USB live media?











up vote
94
down vote

favorite
69












Having live media that can boot both ways can be a problem when installing Ubuntu onto currently available Windows 8 computers.



In other words the key advantage to creating UEFI-only bootable USB live media is: You know that it definitely booted and installed via UEFI.



Since Valve has already been doing UEFI-only booting USB installers with their Debian-based Steam OS and UNetbootin — the top voted alternative to Ubuntu's Startup Disk Creator — isn't UEFI compatible and therefore misleading, I think we should have a separate topic for creating UEFI-only bootable USB live media.










share|improve this question




























    up vote
    94
    down vote

    favorite
    69












    Having live media that can boot both ways can be a problem when installing Ubuntu onto currently available Windows 8 computers.



    In other words the key advantage to creating UEFI-only bootable USB live media is: You know that it definitely booted and installed via UEFI.



    Since Valve has already been doing UEFI-only booting USB installers with their Debian-based Steam OS and UNetbootin — the top voted alternative to Ubuntu's Startup Disk Creator — isn't UEFI compatible and therefore misleading, I think we should have a separate topic for creating UEFI-only bootable USB live media.










    share|improve this question


























      up vote
      94
      down vote

      favorite
      69









      up vote
      94
      down vote

      favorite
      69






      69





      Having live media that can boot both ways can be a problem when installing Ubuntu onto currently available Windows 8 computers.



      In other words the key advantage to creating UEFI-only bootable USB live media is: You know that it definitely booted and installed via UEFI.



      Since Valve has already been doing UEFI-only booting USB installers with their Debian-based Steam OS and UNetbootin — the top voted alternative to Ubuntu's Startup Disk Creator — isn't UEFI compatible and therefore misleading, I think we should have a separate topic for creating UEFI-only bootable USB live media.










      share|improve this question















      Having live media that can boot both ways can be a problem when installing Ubuntu onto currently available Windows 8 computers.



      In other words the key advantage to creating UEFI-only bootable USB live media is: You know that it definitely booted and installed via UEFI.



      Since Valve has already been doing UEFI-only booting USB installers with their Debian-based Steam OS and UNetbootin — the top voted alternative to Ubuntu's Startup Disk Creator — isn't UEFI compatible and therefore misleading, I think we should have a separate topic for creating UEFI-only bootable USB live media.







      boot live-usb uefi






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 20 '15 at 0:28

























      asked Dec 26 '13 at 10:03









      LiveWireBT

      21.2k1770153




      21.2k1770153






















          3 Answers
          3






          active

          oldest

          votes

















          up vote
          114
          down vote



          accepted










          Overview



          Creating UEFI-only booting USB live media is pretty straight forward. Just copy the files to your FAT32-formatted USB drive. That's it!



          Remember that for an installation or booting the media:




          • You may still need to explicitly tell your computer to boot the media via UEFI.

          • A GPT partition table like in preinstallations of Windows 8 and later is recommended.

          • Use the latest AMD64 (LTS) ISOs, because these definitely contain UEFI bootloaders.


          Table of contents




          • Copy files from the ISO method


            1. Example via terminal

            2. Example via GUI

            3. Example on Windows



          • The ISO loopback method (advanced)


            1. Creating the binary

            2. Creating the configuration file

            3. Adding persistency

            4. Checking the integrity

            5. UEFI Secure Boot






          1. Copy files from the ISO method



          This method also works for other install media that contains EFI loaders, like Windows for example.



          1.1. Example via terminal



          You can do something like the following if 604A-00EA is your USB drive and you already have p7zip installed:



          $ 7z x ubuntu-12.04-desktop-amd64.iso -o/media/$USER/604A-00EA/


          You're done if you have only one partition on this USB drive, otherwise you need to flag the partition as bootable e.g. via parted:



          # parted /dev/sdX set 1 boot on


          Where /dev/sdX would be your USB drive and 1 the partition number that should be used to boot.



          1.2. Example via GUI





          1. Mount the .iso-file and copy the contents over to your USB drive. Press Ctrl+H in Nautilus to display and copy hidden files as well.



            nautilus showing Disk Image Mounter in context menu when .iso-file is selected




          2. Add the boot flag via GParted.



            GParted showing how to manage partition flags




          1.3. Example on Windows




          1. Same as above, just copy files.

          2. Press Windows/Super+X, go to Disk Management and check if the partition is marked as active. On Windows versions prior to Windows 8, you press Windows/Super+R to open the run menu and open diskmgmt.msc, that would open Disk Management.


          2. The ISO loopback method (advanced)



          Instead of extracting contents from an ISO image, GRUB and GRUB2 have been able to boot from ISO images directly through a loopback device. Given that the ISO image is UEFI bootable, we can set up a USB drive containing multiple ISOs with different operating systems without creating a mess on the USB drive.



          If you want to boot Windows too you might want to look at SARDU. I remember using it with Windows PE around 2005 and it seems to have been updated to support USB drives and UEFI, but remember that this tool also supports legacy booting.



          What do we need?




          • Very basic knowledge of GRUB configuration files.

          • Very basic knowledge of UEFI booting and GRUB, as we are going to generate our own GRUB bootloader image with a plenty of modules included.

          • A UEFI bootable ISO image, a FAT formatted USB drive and a machine that runs Linux.


            • No, we don't need a UEFI installation of Linux (which may be a chicken and egg situation), a traditional Linux VM like in VirtualBox is fine.




          2.1. Creating the binary



          On your Ubuntu machine or VM make sure the package grub-efi-amd64-bin is installed (grub-efi-ia32-bin is also available for 32-bit Intel architectures on newer releases). The package may have a different name on another distribution, you can compare the file listing of the package to find the right package on your distribution.



          The following command will generate the GRUB image, in this case an EFI binary that every computer with a UEFI firmware should be able to run:



          grub-mkimage -o bootx64.efi -p /efi/boot -O x86_64-efi 
          fat iso9660 part_gpt part_msdos
          normal boot linux configfile loopback chain
          efifwsetup efi_gop efi_uga
          ls search search_label search_fs_uuid search_fs_file
          gfxterm gfxterm_background gfxterm_menu test all_video loadenv
          exfat ext2 ntfs btrfs hfsplus udf


          Every standard UEFI firmware should look into EFIBOOT for a file named boot{arch}.efi, so create the folders on the USB drive and copy the image we just created to this location. Other architectures instead of x64 are possible, but let's keep it simple with x64/amd64.



          2.2. Creating the configuration file



          A very basic example for a the grub.cfg configuration file that should be placed in the same directory as bootx64.efi would look like this:



          set timeout=3
          set color_highlight=black/light-magenta

          menuentry 'Boot Ubuntu 14.04.2 LTS from ISO' {
          set isofile="/efi/boot/ubuntu-14.04.2-desktop-amd64.iso"
          loopback loop $isofile
          linux (loop)/casper/vmlinuz.efi boot=casper iso-scan/filename=$isofile noprompt noeject quiet splash persistent --
          initrd (loop)/casper/initrd.lz
          }
          submenu 'Useful snippets' {
          menuentry 'Ubuntu' {
          chainloader /efi/ubuntu/grubx64.efi
          }
          menuentry 'Windows' {
          chainloader /efi/Microsoft/Boot/bootmgfw.efi
          }
          menuentry 'Firmware Setup' {
          fwsetup
          }
          }


          The important thing is the configuration block with the title Boot Ubuntu 14.04.2 LTS from ISO. You can change the color and timeout to your preference. I chose black/light-magenta as it still looks a bit Ubuntu-ish but is easily distinguishable when chainloading other configurations. You can find more examples for other distributions in the Arch Wiki and reading the GRUB manual is really worth your time if you want to go beyond that.



          Getting back to the configuration block, it should be obvious that the ISO is referenced as /efi/boot/ubuntu-14.04.2-desktop-amd64.iso, so copy your ISO to EFIBOOT and replace ubuntu-14.04.2-desktop-amd64.iso in the configuration with the actual filename of your ISO.



          loopback loop $isofile is the line, that will load our ISO file to a loopback device from which we can boot the Linux kernel directly. This is possible because our EFI GRUB image includes the loopback module. (A bit of trial and error was involved in figuring out which modules are reasonable to include. You shouldn't see any error messages, it's still not perfect though.) Speaking of the kernel you can add kernel parameters like toram, parameters for different languages (example locale=de_DE bootkbd=de) and as in the example: persistent



          2.3. Adding persistency



          You can add a partition as described in: How do I get a live-USB to use a partition for persistence? Or you can create a casper-rw file and place it at the root of your USB drive.



          dd if=/dev/zero of=casper-rw bs=1M count=4094
          mkfs.ext4 -m 0 casper-rw


          I haven't tested what the absolute maximum is, it should be somewhere between 4094 and 4096 MB. Use a partition if you intend to use more space. Note that every change to the (root) is a modification to the overlay filesystem, even deleting files.



          2.4. Checking the integrity



          You should look at answers to the following questions to verify that the Live ISO content on the USB drive is in pristine condition:




          • How can I check the integrity of a downloaded Ubuntu CD?

          • Can an integrity check be run against a USB boot disk?


          2.5. UEFI Secure Boot



          Secure Boot will become mandatory with Windows 10 machines, I suggest you have a look at the Linux Foundation's PreLoader to add Secure Boot functionality to this setup. Here is some ASCII art illustrating menus of the accompanying HashTool.





          Congratulations, I'd say you now mastered UEFI booting and shouldn't be afraid anymore.






          share|improve this answer



















          • 1




            let me point out (a) that all PCs shipped in the last 5 years or so have this capability; (b) that the .iso installer root then can use the full usb stick as ordinary persistent storage. (use ro mount options to protect from accidental deletion.) for modern PCs and common usage patterns, this seems like a better solution than live-usb-creator's default solution.
            – user1539216
            Dec 19 '14 at 6:22






          • 3




            While using GUI method I have run into some symbolic links errors. Is this relevant? Can you please elaborate?
            – VRR
            Apr 4 '15 at 14:16






          • 1




            Hi, LiveWireBT! Thank you for such interesting answer!! I followed 2. The ISO loopback method (advanced) and managed to UEFI boot from usb flash drive. But, in the end of booting I got the error message: Can not mount /dev/loop2 on /cow and after pressing enter I saw a (initramfs) prompt. Can you help me with it?
            – zuba
            Jun 25 '15 at 15:01












          • I want to also thank you for a great guide, it was clear and concise. I never even thought of partitioning the thumb drive and having multiple OS's on it. Thanks again!
            – Hatem Jaber
            Aug 15 '15 at 23:27






          • 2




            In 16.04 at least, the "copy all files" fails to boot because of the grub.cfg kernel line argument "file=/cdrom/preseed/ubuntu.seed". There is no such file, probably related to previously mentioned missing symbolic link (ubuntu to .). Edit the grub.cfg to remove the file=... and replace it with "live-media-path=/casper/ ignore_uuid"
            – ubfan1
            May 6 '16 at 23:43


















          up vote
          1
          down vote













          Using dd worked for me, for some reason, the GUI version did not work. So, first, you might want to monitor the progess of dd, another options is using the SIGUSR1 option to trigger dd to report it's progress periodically, but this is more complicated than pv.



          Then:



          sudo dd if=path/to/image/file | pv | sudo dd of=/dev/device_you_want_to_use


          (/dev/device_you_want_to_use will typically be /dev/sdb, but check with df!)






          share|improve this answer



















          • 7




            Creating media this way does not result in UEFI-only bootable media. Emphasis is on the last paragraph of the question: "There is also one advantage to creating UEFI-only booting USB live media: You know that it definitely booted via UEFI." Having media that can boot both ways is a problem when trying to understand and setup a UEFI-bootable Ubuntu installation.
            – LiveWireBT
            Jul 27 '14 at 21:14






          • 1




            I see. The weird thing is that this way, I was able to produce a image that booted in UEFI mode (I know that, since the laptop was set to allow only uefi boot and also because of the inital screen). The preffered answer did not work for me, the computer would just not boot with an image created by just copying the files.
            – sup
            Jul 28 '14 at 7:32






          • 4




            @sup this method creates media that can be UEFI-booted. The problem is that it's not only UEFI-bootable, as requested in the question: it can also be booted in BIOS mode.
            – Darael
            Nov 20 '15 at 10:45


















          up vote
          1
          down vote













          Extract from ISO file to FAT32



          Extracting the content of an Ubuntu 64-bit desktop ISO file to a partition with a FAT32 file system and a boot flag will do the job: to create a live drive, that boots only in UEFI mode. It is called 'Copy files from the ISO method' here (in the accepted answer).



          Test if running in UEFI or BIOS mode



          But it is easy to test in a running Ubuntu system (live as well as installed), if it was booted in UEFI or BIOS mode. Run this command line,



          test -d /sys/firmware/efi && echo efi || echo bios


          This makes it straightforward to use live systems that can be used in both boot modes, which can also be an advantage.



          See also the following links for a more detailed explanation and description of the method,



          help.ubuntu.com/community/Installation/iso2usb



          help.ubuntu.com/community/Installation/iso2usb/diy






          share|improve this answer






















            protected by Community Jan 9 at 16:15



            Thank you for your interest in this question.
            Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).



            Would you like to answer one of these unanswered questions instead?














            3 Answers
            3






            active

            oldest

            votes








            3 Answers
            3






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes








            up vote
            114
            down vote



            accepted










            Overview



            Creating UEFI-only booting USB live media is pretty straight forward. Just copy the files to your FAT32-formatted USB drive. That's it!



            Remember that for an installation or booting the media:




            • You may still need to explicitly tell your computer to boot the media via UEFI.

            • A GPT partition table like in preinstallations of Windows 8 and later is recommended.

            • Use the latest AMD64 (LTS) ISOs, because these definitely contain UEFI bootloaders.


            Table of contents




            • Copy files from the ISO method


              1. Example via terminal

              2. Example via GUI

              3. Example on Windows



            • The ISO loopback method (advanced)


              1. Creating the binary

              2. Creating the configuration file

              3. Adding persistency

              4. Checking the integrity

              5. UEFI Secure Boot






            1. Copy files from the ISO method



            This method also works for other install media that contains EFI loaders, like Windows for example.



            1.1. Example via terminal



            You can do something like the following if 604A-00EA is your USB drive and you already have p7zip installed:



            $ 7z x ubuntu-12.04-desktop-amd64.iso -o/media/$USER/604A-00EA/


            You're done if you have only one partition on this USB drive, otherwise you need to flag the partition as bootable e.g. via parted:



            # parted /dev/sdX set 1 boot on


            Where /dev/sdX would be your USB drive and 1 the partition number that should be used to boot.



            1.2. Example via GUI





            1. Mount the .iso-file and copy the contents over to your USB drive. Press Ctrl+H in Nautilus to display and copy hidden files as well.



              nautilus showing Disk Image Mounter in context menu when .iso-file is selected




            2. Add the boot flag via GParted.



              GParted showing how to manage partition flags




            1.3. Example on Windows




            1. Same as above, just copy files.

            2. Press Windows/Super+X, go to Disk Management and check if the partition is marked as active. On Windows versions prior to Windows 8, you press Windows/Super+R to open the run menu and open diskmgmt.msc, that would open Disk Management.


            2. The ISO loopback method (advanced)



            Instead of extracting contents from an ISO image, GRUB and GRUB2 have been able to boot from ISO images directly through a loopback device. Given that the ISO image is UEFI bootable, we can set up a USB drive containing multiple ISOs with different operating systems without creating a mess on the USB drive.



            If you want to boot Windows too you might want to look at SARDU. I remember using it with Windows PE around 2005 and it seems to have been updated to support USB drives and UEFI, but remember that this tool also supports legacy booting.



            What do we need?




            • Very basic knowledge of GRUB configuration files.

            • Very basic knowledge of UEFI booting and GRUB, as we are going to generate our own GRUB bootloader image with a plenty of modules included.

            • A UEFI bootable ISO image, a FAT formatted USB drive and a machine that runs Linux.


              • No, we don't need a UEFI installation of Linux (which may be a chicken and egg situation), a traditional Linux VM like in VirtualBox is fine.




            2.1. Creating the binary



            On your Ubuntu machine or VM make sure the package grub-efi-amd64-bin is installed (grub-efi-ia32-bin is also available for 32-bit Intel architectures on newer releases). The package may have a different name on another distribution, you can compare the file listing of the package to find the right package on your distribution.



            The following command will generate the GRUB image, in this case an EFI binary that every computer with a UEFI firmware should be able to run:



            grub-mkimage -o bootx64.efi -p /efi/boot -O x86_64-efi 
            fat iso9660 part_gpt part_msdos
            normal boot linux configfile loopback chain
            efifwsetup efi_gop efi_uga
            ls search search_label search_fs_uuid search_fs_file
            gfxterm gfxterm_background gfxterm_menu test all_video loadenv
            exfat ext2 ntfs btrfs hfsplus udf


            Every standard UEFI firmware should look into EFIBOOT for a file named boot{arch}.efi, so create the folders on the USB drive and copy the image we just created to this location. Other architectures instead of x64 are possible, but let's keep it simple with x64/amd64.



            2.2. Creating the configuration file



            A very basic example for a the grub.cfg configuration file that should be placed in the same directory as bootx64.efi would look like this:



            set timeout=3
            set color_highlight=black/light-magenta

            menuentry 'Boot Ubuntu 14.04.2 LTS from ISO' {
            set isofile="/efi/boot/ubuntu-14.04.2-desktop-amd64.iso"
            loopback loop $isofile
            linux (loop)/casper/vmlinuz.efi boot=casper iso-scan/filename=$isofile noprompt noeject quiet splash persistent --
            initrd (loop)/casper/initrd.lz
            }
            submenu 'Useful snippets' {
            menuentry 'Ubuntu' {
            chainloader /efi/ubuntu/grubx64.efi
            }
            menuentry 'Windows' {
            chainloader /efi/Microsoft/Boot/bootmgfw.efi
            }
            menuentry 'Firmware Setup' {
            fwsetup
            }
            }


            The important thing is the configuration block with the title Boot Ubuntu 14.04.2 LTS from ISO. You can change the color and timeout to your preference. I chose black/light-magenta as it still looks a bit Ubuntu-ish but is easily distinguishable when chainloading other configurations. You can find more examples for other distributions in the Arch Wiki and reading the GRUB manual is really worth your time if you want to go beyond that.



            Getting back to the configuration block, it should be obvious that the ISO is referenced as /efi/boot/ubuntu-14.04.2-desktop-amd64.iso, so copy your ISO to EFIBOOT and replace ubuntu-14.04.2-desktop-amd64.iso in the configuration with the actual filename of your ISO.



            loopback loop $isofile is the line, that will load our ISO file to a loopback device from which we can boot the Linux kernel directly. This is possible because our EFI GRUB image includes the loopback module. (A bit of trial and error was involved in figuring out which modules are reasonable to include. You shouldn't see any error messages, it's still not perfect though.) Speaking of the kernel you can add kernel parameters like toram, parameters for different languages (example locale=de_DE bootkbd=de) and as in the example: persistent



            2.3. Adding persistency



            You can add a partition as described in: How do I get a live-USB to use a partition for persistence? Or you can create a casper-rw file and place it at the root of your USB drive.



            dd if=/dev/zero of=casper-rw bs=1M count=4094
            mkfs.ext4 -m 0 casper-rw


            I haven't tested what the absolute maximum is, it should be somewhere between 4094 and 4096 MB. Use a partition if you intend to use more space. Note that every change to the (root) is a modification to the overlay filesystem, even deleting files.



            2.4. Checking the integrity



            You should look at answers to the following questions to verify that the Live ISO content on the USB drive is in pristine condition:




            • How can I check the integrity of a downloaded Ubuntu CD?

            • Can an integrity check be run against a USB boot disk?


            2.5. UEFI Secure Boot



            Secure Boot will become mandatory with Windows 10 machines, I suggest you have a look at the Linux Foundation's PreLoader to add Secure Boot functionality to this setup. Here is some ASCII art illustrating menus of the accompanying HashTool.





            Congratulations, I'd say you now mastered UEFI booting and shouldn't be afraid anymore.






            share|improve this answer



















            • 1




              let me point out (a) that all PCs shipped in the last 5 years or so have this capability; (b) that the .iso installer root then can use the full usb stick as ordinary persistent storage. (use ro mount options to protect from accidental deletion.) for modern PCs and common usage patterns, this seems like a better solution than live-usb-creator's default solution.
              – user1539216
              Dec 19 '14 at 6:22






            • 3




              While using GUI method I have run into some symbolic links errors. Is this relevant? Can you please elaborate?
              – VRR
              Apr 4 '15 at 14:16






            • 1




              Hi, LiveWireBT! Thank you for such interesting answer!! I followed 2. The ISO loopback method (advanced) and managed to UEFI boot from usb flash drive. But, in the end of booting I got the error message: Can not mount /dev/loop2 on /cow and after pressing enter I saw a (initramfs) prompt. Can you help me with it?
              – zuba
              Jun 25 '15 at 15:01












            • I want to also thank you for a great guide, it was clear and concise. I never even thought of partitioning the thumb drive and having multiple OS's on it. Thanks again!
              – Hatem Jaber
              Aug 15 '15 at 23:27






            • 2




              In 16.04 at least, the "copy all files" fails to boot because of the grub.cfg kernel line argument "file=/cdrom/preseed/ubuntu.seed". There is no such file, probably related to previously mentioned missing symbolic link (ubuntu to .). Edit the grub.cfg to remove the file=... and replace it with "live-media-path=/casper/ ignore_uuid"
              – ubfan1
              May 6 '16 at 23:43















            up vote
            114
            down vote



            accepted










            Overview



            Creating UEFI-only booting USB live media is pretty straight forward. Just copy the files to your FAT32-formatted USB drive. That's it!



            Remember that for an installation or booting the media:




            • You may still need to explicitly tell your computer to boot the media via UEFI.

            • A GPT partition table like in preinstallations of Windows 8 and later is recommended.

            • Use the latest AMD64 (LTS) ISOs, because these definitely contain UEFI bootloaders.


            Table of contents




            • Copy files from the ISO method


              1. Example via terminal

              2. Example via GUI

              3. Example on Windows



            • The ISO loopback method (advanced)


              1. Creating the binary

              2. Creating the configuration file

              3. Adding persistency

              4. Checking the integrity

              5. UEFI Secure Boot






            1. Copy files from the ISO method



            This method also works for other install media that contains EFI loaders, like Windows for example.



            1.1. Example via terminal



            You can do something like the following if 604A-00EA is your USB drive and you already have p7zip installed:



            $ 7z x ubuntu-12.04-desktop-amd64.iso -o/media/$USER/604A-00EA/


            You're done if you have only one partition on this USB drive, otherwise you need to flag the partition as bootable e.g. via parted:



            # parted /dev/sdX set 1 boot on


            Where /dev/sdX would be your USB drive and 1 the partition number that should be used to boot.



            1.2. Example via GUI





            1. Mount the .iso-file and copy the contents over to your USB drive. Press Ctrl+H in Nautilus to display and copy hidden files as well.



              nautilus showing Disk Image Mounter in context menu when .iso-file is selected




            2. Add the boot flag via GParted.



              GParted showing how to manage partition flags




            1.3. Example on Windows




            1. Same as above, just copy files.

            2. Press Windows/Super+X, go to Disk Management and check if the partition is marked as active. On Windows versions prior to Windows 8, you press Windows/Super+R to open the run menu and open diskmgmt.msc, that would open Disk Management.


            2. The ISO loopback method (advanced)



            Instead of extracting contents from an ISO image, GRUB and GRUB2 have been able to boot from ISO images directly through a loopback device. Given that the ISO image is UEFI bootable, we can set up a USB drive containing multiple ISOs with different operating systems without creating a mess on the USB drive.



            If you want to boot Windows too you might want to look at SARDU. I remember using it with Windows PE around 2005 and it seems to have been updated to support USB drives and UEFI, but remember that this tool also supports legacy booting.



            What do we need?




            • Very basic knowledge of GRUB configuration files.

            • Very basic knowledge of UEFI booting and GRUB, as we are going to generate our own GRUB bootloader image with a plenty of modules included.

            • A UEFI bootable ISO image, a FAT formatted USB drive and a machine that runs Linux.


              • No, we don't need a UEFI installation of Linux (which may be a chicken and egg situation), a traditional Linux VM like in VirtualBox is fine.




            2.1. Creating the binary



            On your Ubuntu machine or VM make sure the package grub-efi-amd64-bin is installed (grub-efi-ia32-bin is also available for 32-bit Intel architectures on newer releases). The package may have a different name on another distribution, you can compare the file listing of the package to find the right package on your distribution.



            The following command will generate the GRUB image, in this case an EFI binary that every computer with a UEFI firmware should be able to run:



            grub-mkimage -o bootx64.efi -p /efi/boot -O x86_64-efi 
            fat iso9660 part_gpt part_msdos
            normal boot linux configfile loopback chain
            efifwsetup efi_gop efi_uga
            ls search search_label search_fs_uuid search_fs_file
            gfxterm gfxterm_background gfxterm_menu test all_video loadenv
            exfat ext2 ntfs btrfs hfsplus udf


            Every standard UEFI firmware should look into EFIBOOT for a file named boot{arch}.efi, so create the folders on the USB drive and copy the image we just created to this location. Other architectures instead of x64 are possible, but let's keep it simple with x64/amd64.



            2.2. Creating the configuration file



            A very basic example for a the grub.cfg configuration file that should be placed in the same directory as bootx64.efi would look like this:



            set timeout=3
            set color_highlight=black/light-magenta

            menuentry 'Boot Ubuntu 14.04.2 LTS from ISO' {
            set isofile="/efi/boot/ubuntu-14.04.2-desktop-amd64.iso"
            loopback loop $isofile
            linux (loop)/casper/vmlinuz.efi boot=casper iso-scan/filename=$isofile noprompt noeject quiet splash persistent --
            initrd (loop)/casper/initrd.lz
            }
            submenu 'Useful snippets' {
            menuentry 'Ubuntu' {
            chainloader /efi/ubuntu/grubx64.efi
            }
            menuentry 'Windows' {
            chainloader /efi/Microsoft/Boot/bootmgfw.efi
            }
            menuentry 'Firmware Setup' {
            fwsetup
            }
            }


            The important thing is the configuration block with the title Boot Ubuntu 14.04.2 LTS from ISO. You can change the color and timeout to your preference. I chose black/light-magenta as it still looks a bit Ubuntu-ish but is easily distinguishable when chainloading other configurations. You can find more examples for other distributions in the Arch Wiki and reading the GRUB manual is really worth your time if you want to go beyond that.



            Getting back to the configuration block, it should be obvious that the ISO is referenced as /efi/boot/ubuntu-14.04.2-desktop-amd64.iso, so copy your ISO to EFIBOOT and replace ubuntu-14.04.2-desktop-amd64.iso in the configuration with the actual filename of your ISO.



            loopback loop $isofile is the line, that will load our ISO file to a loopback device from which we can boot the Linux kernel directly. This is possible because our EFI GRUB image includes the loopback module. (A bit of trial and error was involved in figuring out which modules are reasonable to include. You shouldn't see any error messages, it's still not perfect though.) Speaking of the kernel you can add kernel parameters like toram, parameters for different languages (example locale=de_DE bootkbd=de) and as in the example: persistent



            2.3. Adding persistency



            You can add a partition as described in: How do I get a live-USB to use a partition for persistence? Or you can create a casper-rw file and place it at the root of your USB drive.



            dd if=/dev/zero of=casper-rw bs=1M count=4094
            mkfs.ext4 -m 0 casper-rw


            I haven't tested what the absolute maximum is, it should be somewhere between 4094 and 4096 MB. Use a partition if you intend to use more space. Note that every change to the (root) is a modification to the overlay filesystem, even deleting files.



            2.4. Checking the integrity



            You should look at answers to the following questions to verify that the Live ISO content on the USB drive is in pristine condition:




            • How can I check the integrity of a downloaded Ubuntu CD?

            • Can an integrity check be run against a USB boot disk?


            2.5. UEFI Secure Boot



            Secure Boot will become mandatory with Windows 10 machines, I suggest you have a look at the Linux Foundation's PreLoader to add Secure Boot functionality to this setup. Here is some ASCII art illustrating menus of the accompanying HashTool.





            Congratulations, I'd say you now mastered UEFI booting and shouldn't be afraid anymore.






            share|improve this answer



















            • 1




              let me point out (a) that all PCs shipped in the last 5 years or so have this capability; (b) that the .iso installer root then can use the full usb stick as ordinary persistent storage. (use ro mount options to protect from accidental deletion.) for modern PCs and common usage patterns, this seems like a better solution than live-usb-creator's default solution.
              – user1539216
              Dec 19 '14 at 6:22






            • 3




              While using GUI method I have run into some symbolic links errors. Is this relevant? Can you please elaborate?
              – VRR
              Apr 4 '15 at 14:16






            • 1




              Hi, LiveWireBT! Thank you for such interesting answer!! I followed 2. The ISO loopback method (advanced) and managed to UEFI boot from usb flash drive. But, in the end of booting I got the error message: Can not mount /dev/loop2 on /cow and after pressing enter I saw a (initramfs) prompt. Can you help me with it?
              – zuba
              Jun 25 '15 at 15:01












            • I want to also thank you for a great guide, it was clear and concise. I never even thought of partitioning the thumb drive and having multiple OS's on it. Thanks again!
              – Hatem Jaber
              Aug 15 '15 at 23:27






            • 2




              In 16.04 at least, the "copy all files" fails to boot because of the grub.cfg kernel line argument "file=/cdrom/preseed/ubuntu.seed". There is no such file, probably related to previously mentioned missing symbolic link (ubuntu to .). Edit the grub.cfg to remove the file=... and replace it with "live-media-path=/casper/ ignore_uuid"
              – ubfan1
              May 6 '16 at 23:43













            up vote
            114
            down vote



            accepted







            up vote
            114
            down vote



            accepted






            Overview



            Creating UEFI-only booting USB live media is pretty straight forward. Just copy the files to your FAT32-formatted USB drive. That's it!



            Remember that for an installation or booting the media:




            • You may still need to explicitly tell your computer to boot the media via UEFI.

            • A GPT partition table like in preinstallations of Windows 8 and later is recommended.

            • Use the latest AMD64 (LTS) ISOs, because these definitely contain UEFI bootloaders.


            Table of contents




            • Copy files from the ISO method


              1. Example via terminal

              2. Example via GUI

              3. Example on Windows



            • The ISO loopback method (advanced)


              1. Creating the binary

              2. Creating the configuration file

              3. Adding persistency

              4. Checking the integrity

              5. UEFI Secure Boot






            1. Copy files from the ISO method



            This method also works for other install media that contains EFI loaders, like Windows for example.



            1.1. Example via terminal



            You can do something like the following if 604A-00EA is your USB drive and you already have p7zip installed:



            $ 7z x ubuntu-12.04-desktop-amd64.iso -o/media/$USER/604A-00EA/


            You're done if you have only one partition on this USB drive, otherwise you need to flag the partition as bootable e.g. via parted:



            # parted /dev/sdX set 1 boot on


            Where /dev/sdX would be your USB drive and 1 the partition number that should be used to boot.



            1.2. Example via GUI





            1. Mount the .iso-file and copy the contents over to your USB drive. Press Ctrl+H in Nautilus to display and copy hidden files as well.



              nautilus showing Disk Image Mounter in context menu when .iso-file is selected




            2. Add the boot flag via GParted.



              GParted showing how to manage partition flags




            1.3. Example on Windows




            1. Same as above, just copy files.

            2. Press Windows/Super+X, go to Disk Management and check if the partition is marked as active. On Windows versions prior to Windows 8, you press Windows/Super+R to open the run menu and open diskmgmt.msc, that would open Disk Management.


            2. The ISO loopback method (advanced)



            Instead of extracting contents from an ISO image, GRUB and GRUB2 have been able to boot from ISO images directly through a loopback device. Given that the ISO image is UEFI bootable, we can set up a USB drive containing multiple ISOs with different operating systems without creating a mess on the USB drive.



            If you want to boot Windows too you might want to look at SARDU. I remember using it with Windows PE around 2005 and it seems to have been updated to support USB drives and UEFI, but remember that this tool also supports legacy booting.



            What do we need?




            • Very basic knowledge of GRUB configuration files.

            • Very basic knowledge of UEFI booting and GRUB, as we are going to generate our own GRUB bootloader image with a plenty of modules included.

            • A UEFI bootable ISO image, a FAT formatted USB drive and a machine that runs Linux.


              • No, we don't need a UEFI installation of Linux (which may be a chicken and egg situation), a traditional Linux VM like in VirtualBox is fine.




            2.1. Creating the binary



            On your Ubuntu machine or VM make sure the package grub-efi-amd64-bin is installed (grub-efi-ia32-bin is also available for 32-bit Intel architectures on newer releases). The package may have a different name on another distribution, you can compare the file listing of the package to find the right package on your distribution.



            The following command will generate the GRUB image, in this case an EFI binary that every computer with a UEFI firmware should be able to run:



            grub-mkimage -o bootx64.efi -p /efi/boot -O x86_64-efi 
            fat iso9660 part_gpt part_msdos
            normal boot linux configfile loopback chain
            efifwsetup efi_gop efi_uga
            ls search search_label search_fs_uuid search_fs_file
            gfxterm gfxterm_background gfxterm_menu test all_video loadenv
            exfat ext2 ntfs btrfs hfsplus udf


            Every standard UEFI firmware should look into EFIBOOT for a file named boot{arch}.efi, so create the folders on the USB drive and copy the image we just created to this location. Other architectures instead of x64 are possible, but let's keep it simple with x64/amd64.



            2.2. Creating the configuration file



            A very basic example for a the grub.cfg configuration file that should be placed in the same directory as bootx64.efi would look like this:



            set timeout=3
            set color_highlight=black/light-magenta

            menuentry 'Boot Ubuntu 14.04.2 LTS from ISO' {
            set isofile="/efi/boot/ubuntu-14.04.2-desktop-amd64.iso"
            loopback loop $isofile
            linux (loop)/casper/vmlinuz.efi boot=casper iso-scan/filename=$isofile noprompt noeject quiet splash persistent --
            initrd (loop)/casper/initrd.lz
            }
            submenu 'Useful snippets' {
            menuentry 'Ubuntu' {
            chainloader /efi/ubuntu/grubx64.efi
            }
            menuentry 'Windows' {
            chainloader /efi/Microsoft/Boot/bootmgfw.efi
            }
            menuentry 'Firmware Setup' {
            fwsetup
            }
            }


            The important thing is the configuration block with the title Boot Ubuntu 14.04.2 LTS from ISO. You can change the color and timeout to your preference. I chose black/light-magenta as it still looks a bit Ubuntu-ish but is easily distinguishable when chainloading other configurations. You can find more examples for other distributions in the Arch Wiki and reading the GRUB manual is really worth your time if you want to go beyond that.



            Getting back to the configuration block, it should be obvious that the ISO is referenced as /efi/boot/ubuntu-14.04.2-desktop-amd64.iso, so copy your ISO to EFIBOOT and replace ubuntu-14.04.2-desktop-amd64.iso in the configuration with the actual filename of your ISO.



            loopback loop $isofile is the line, that will load our ISO file to a loopback device from which we can boot the Linux kernel directly. This is possible because our EFI GRUB image includes the loopback module. (A bit of trial and error was involved in figuring out which modules are reasonable to include. You shouldn't see any error messages, it's still not perfect though.) Speaking of the kernel you can add kernel parameters like toram, parameters for different languages (example locale=de_DE bootkbd=de) and as in the example: persistent



            2.3. Adding persistency



            You can add a partition as described in: How do I get a live-USB to use a partition for persistence? Or you can create a casper-rw file and place it at the root of your USB drive.



            dd if=/dev/zero of=casper-rw bs=1M count=4094
            mkfs.ext4 -m 0 casper-rw


            I haven't tested what the absolute maximum is, it should be somewhere between 4094 and 4096 MB. Use a partition if you intend to use more space. Note that every change to the (root) is a modification to the overlay filesystem, even deleting files.



            2.4. Checking the integrity



            You should look at answers to the following questions to verify that the Live ISO content on the USB drive is in pristine condition:




            • How can I check the integrity of a downloaded Ubuntu CD?

            • Can an integrity check be run against a USB boot disk?


            2.5. UEFI Secure Boot



            Secure Boot will become mandatory with Windows 10 machines, I suggest you have a look at the Linux Foundation's PreLoader to add Secure Boot functionality to this setup. Here is some ASCII art illustrating menus of the accompanying HashTool.





            Congratulations, I'd say you now mastered UEFI booting and shouldn't be afraid anymore.






            share|improve this answer














            Overview



            Creating UEFI-only booting USB live media is pretty straight forward. Just copy the files to your FAT32-formatted USB drive. That's it!



            Remember that for an installation or booting the media:




            • You may still need to explicitly tell your computer to boot the media via UEFI.

            • A GPT partition table like in preinstallations of Windows 8 and later is recommended.

            • Use the latest AMD64 (LTS) ISOs, because these definitely contain UEFI bootloaders.


            Table of contents




            • Copy files from the ISO method


              1. Example via terminal

              2. Example via GUI

              3. Example on Windows



            • The ISO loopback method (advanced)


              1. Creating the binary

              2. Creating the configuration file

              3. Adding persistency

              4. Checking the integrity

              5. UEFI Secure Boot






            1. Copy files from the ISO method



            This method also works for other install media that contains EFI loaders, like Windows for example.



            1.1. Example via terminal



            You can do something like the following if 604A-00EA is your USB drive and you already have p7zip installed:



            $ 7z x ubuntu-12.04-desktop-amd64.iso -o/media/$USER/604A-00EA/


            You're done if you have only one partition on this USB drive, otherwise you need to flag the partition as bootable e.g. via parted:



            # parted /dev/sdX set 1 boot on


            Where /dev/sdX would be your USB drive and 1 the partition number that should be used to boot.



            1.2. Example via GUI





            1. Mount the .iso-file and copy the contents over to your USB drive. Press Ctrl+H in Nautilus to display and copy hidden files as well.



              nautilus showing Disk Image Mounter in context menu when .iso-file is selected




            2. Add the boot flag via GParted.



              GParted showing how to manage partition flags




            1.3. Example on Windows




            1. Same as above, just copy files.

            2. Press Windows/Super+X, go to Disk Management and check if the partition is marked as active. On Windows versions prior to Windows 8, you press Windows/Super+R to open the run menu and open diskmgmt.msc, that would open Disk Management.


            2. The ISO loopback method (advanced)



            Instead of extracting contents from an ISO image, GRUB and GRUB2 have been able to boot from ISO images directly through a loopback device. Given that the ISO image is UEFI bootable, we can set up a USB drive containing multiple ISOs with different operating systems without creating a mess on the USB drive.



            If you want to boot Windows too you might want to look at SARDU. I remember using it with Windows PE around 2005 and it seems to have been updated to support USB drives and UEFI, but remember that this tool also supports legacy booting.



            What do we need?




            • Very basic knowledge of GRUB configuration files.

            • Very basic knowledge of UEFI booting and GRUB, as we are going to generate our own GRUB bootloader image with a plenty of modules included.

            • A UEFI bootable ISO image, a FAT formatted USB drive and a machine that runs Linux.


              • No, we don't need a UEFI installation of Linux (which may be a chicken and egg situation), a traditional Linux VM like in VirtualBox is fine.




            2.1. Creating the binary



            On your Ubuntu machine or VM make sure the package grub-efi-amd64-bin is installed (grub-efi-ia32-bin is also available for 32-bit Intel architectures on newer releases). The package may have a different name on another distribution, you can compare the file listing of the package to find the right package on your distribution.



            The following command will generate the GRUB image, in this case an EFI binary that every computer with a UEFI firmware should be able to run:



            grub-mkimage -o bootx64.efi -p /efi/boot -O x86_64-efi 
            fat iso9660 part_gpt part_msdos
            normal boot linux configfile loopback chain
            efifwsetup efi_gop efi_uga
            ls search search_label search_fs_uuid search_fs_file
            gfxterm gfxterm_background gfxterm_menu test all_video loadenv
            exfat ext2 ntfs btrfs hfsplus udf


            Every standard UEFI firmware should look into EFIBOOT for a file named boot{arch}.efi, so create the folders on the USB drive and copy the image we just created to this location. Other architectures instead of x64 are possible, but let's keep it simple with x64/amd64.



            2.2. Creating the configuration file



            A very basic example for a the grub.cfg configuration file that should be placed in the same directory as bootx64.efi would look like this:



            set timeout=3
            set color_highlight=black/light-magenta

            menuentry 'Boot Ubuntu 14.04.2 LTS from ISO' {
            set isofile="/efi/boot/ubuntu-14.04.2-desktop-amd64.iso"
            loopback loop $isofile
            linux (loop)/casper/vmlinuz.efi boot=casper iso-scan/filename=$isofile noprompt noeject quiet splash persistent --
            initrd (loop)/casper/initrd.lz
            }
            submenu 'Useful snippets' {
            menuentry 'Ubuntu' {
            chainloader /efi/ubuntu/grubx64.efi
            }
            menuentry 'Windows' {
            chainloader /efi/Microsoft/Boot/bootmgfw.efi
            }
            menuentry 'Firmware Setup' {
            fwsetup
            }
            }


            The important thing is the configuration block with the title Boot Ubuntu 14.04.2 LTS from ISO. You can change the color and timeout to your preference. I chose black/light-magenta as it still looks a bit Ubuntu-ish but is easily distinguishable when chainloading other configurations. You can find more examples for other distributions in the Arch Wiki and reading the GRUB manual is really worth your time if you want to go beyond that.



            Getting back to the configuration block, it should be obvious that the ISO is referenced as /efi/boot/ubuntu-14.04.2-desktop-amd64.iso, so copy your ISO to EFIBOOT and replace ubuntu-14.04.2-desktop-amd64.iso in the configuration with the actual filename of your ISO.



            loopback loop $isofile is the line, that will load our ISO file to a loopback device from which we can boot the Linux kernel directly. This is possible because our EFI GRUB image includes the loopback module. (A bit of trial and error was involved in figuring out which modules are reasonable to include. You shouldn't see any error messages, it's still not perfect though.) Speaking of the kernel you can add kernel parameters like toram, parameters for different languages (example locale=de_DE bootkbd=de) and as in the example: persistent



            2.3. Adding persistency



            You can add a partition as described in: How do I get a live-USB to use a partition for persistence? Or you can create a casper-rw file and place it at the root of your USB drive.



            dd if=/dev/zero of=casper-rw bs=1M count=4094
            mkfs.ext4 -m 0 casper-rw


            I haven't tested what the absolute maximum is, it should be somewhere between 4094 and 4096 MB. Use a partition if you intend to use more space. Note that every change to the (root) is a modification to the overlay filesystem, even deleting files.



            2.4. Checking the integrity



            You should look at answers to the following questions to verify that the Live ISO content on the USB drive is in pristine condition:




            • How can I check the integrity of a downloaded Ubuntu CD?

            • Can an integrity check be run against a USB boot disk?


            2.5. UEFI Secure Boot



            Secure Boot will become mandatory with Windows 10 machines, I suggest you have a look at the Linux Foundation's PreLoader to add Secure Boot functionality to this setup. Here is some ASCII art illustrating menus of the accompanying HashTool.





            Congratulations, I'd say you now mastered UEFI booting and shouldn't be afraid anymore.







            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited Apr 13 '17 at 12:23









            Community

            1




            1










            answered Dec 26 '13 at 10:03









            LiveWireBT

            21.2k1770153




            21.2k1770153








            • 1




              let me point out (a) that all PCs shipped in the last 5 years or so have this capability; (b) that the .iso installer root then can use the full usb stick as ordinary persistent storage. (use ro mount options to protect from accidental deletion.) for modern PCs and common usage patterns, this seems like a better solution than live-usb-creator's default solution.
              – user1539216
              Dec 19 '14 at 6:22






            • 3




              While using GUI method I have run into some symbolic links errors. Is this relevant? Can you please elaborate?
              – VRR
              Apr 4 '15 at 14:16






            • 1




              Hi, LiveWireBT! Thank you for such interesting answer!! I followed 2. The ISO loopback method (advanced) and managed to UEFI boot from usb flash drive. But, in the end of booting I got the error message: Can not mount /dev/loop2 on /cow and after pressing enter I saw a (initramfs) prompt. Can you help me with it?
              – zuba
              Jun 25 '15 at 15:01












            • I want to also thank you for a great guide, it was clear and concise. I never even thought of partitioning the thumb drive and having multiple OS's on it. Thanks again!
              – Hatem Jaber
              Aug 15 '15 at 23:27






            • 2




              In 16.04 at least, the "copy all files" fails to boot because of the grub.cfg kernel line argument "file=/cdrom/preseed/ubuntu.seed". There is no such file, probably related to previously mentioned missing symbolic link (ubuntu to .). Edit the grub.cfg to remove the file=... and replace it with "live-media-path=/casper/ ignore_uuid"
              – ubfan1
              May 6 '16 at 23:43














            • 1




              let me point out (a) that all PCs shipped in the last 5 years or so have this capability; (b) that the .iso installer root then can use the full usb stick as ordinary persistent storage. (use ro mount options to protect from accidental deletion.) for modern PCs and common usage patterns, this seems like a better solution than live-usb-creator's default solution.
              – user1539216
              Dec 19 '14 at 6:22






            • 3




              While using GUI method I have run into some symbolic links errors. Is this relevant? Can you please elaborate?
              – VRR
              Apr 4 '15 at 14:16






            • 1




              Hi, LiveWireBT! Thank you for such interesting answer!! I followed 2. The ISO loopback method (advanced) and managed to UEFI boot from usb flash drive. But, in the end of booting I got the error message: Can not mount /dev/loop2 on /cow and after pressing enter I saw a (initramfs) prompt. Can you help me with it?
              – zuba
              Jun 25 '15 at 15:01












            • I want to also thank you for a great guide, it was clear and concise. I never even thought of partitioning the thumb drive and having multiple OS's on it. Thanks again!
              – Hatem Jaber
              Aug 15 '15 at 23:27






            • 2




              In 16.04 at least, the "copy all files" fails to boot because of the grub.cfg kernel line argument "file=/cdrom/preseed/ubuntu.seed". There is no such file, probably related to previously mentioned missing symbolic link (ubuntu to .). Edit the grub.cfg to remove the file=... and replace it with "live-media-path=/casper/ ignore_uuid"
              – ubfan1
              May 6 '16 at 23:43








            1




            1




            let me point out (a) that all PCs shipped in the last 5 years or so have this capability; (b) that the .iso installer root then can use the full usb stick as ordinary persistent storage. (use ro mount options to protect from accidental deletion.) for modern PCs and common usage patterns, this seems like a better solution than live-usb-creator's default solution.
            – user1539216
            Dec 19 '14 at 6:22




            let me point out (a) that all PCs shipped in the last 5 years or so have this capability; (b) that the .iso installer root then can use the full usb stick as ordinary persistent storage. (use ro mount options to protect from accidental deletion.) for modern PCs and common usage patterns, this seems like a better solution than live-usb-creator's default solution.
            – user1539216
            Dec 19 '14 at 6:22




            3




            3




            While using GUI method I have run into some symbolic links errors. Is this relevant? Can you please elaborate?
            – VRR
            Apr 4 '15 at 14:16




            While using GUI method I have run into some symbolic links errors. Is this relevant? Can you please elaborate?
            – VRR
            Apr 4 '15 at 14:16




            1




            1




            Hi, LiveWireBT! Thank you for such interesting answer!! I followed 2. The ISO loopback method (advanced) and managed to UEFI boot from usb flash drive. But, in the end of booting I got the error message: Can not mount /dev/loop2 on /cow and after pressing enter I saw a (initramfs) prompt. Can you help me with it?
            – zuba
            Jun 25 '15 at 15:01






            Hi, LiveWireBT! Thank you for such interesting answer!! I followed 2. The ISO loopback method (advanced) and managed to UEFI boot from usb flash drive. But, in the end of booting I got the error message: Can not mount /dev/loop2 on /cow and after pressing enter I saw a (initramfs) prompt. Can you help me with it?
            – zuba
            Jun 25 '15 at 15:01














            I want to also thank you for a great guide, it was clear and concise. I never even thought of partitioning the thumb drive and having multiple OS's on it. Thanks again!
            – Hatem Jaber
            Aug 15 '15 at 23:27




            I want to also thank you for a great guide, it was clear and concise. I never even thought of partitioning the thumb drive and having multiple OS's on it. Thanks again!
            – Hatem Jaber
            Aug 15 '15 at 23:27




            2




            2




            In 16.04 at least, the "copy all files" fails to boot because of the grub.cfg kernel line argument "file=/cdrom/preseed/ubuntu.seed". There is no such file, probably related to previously mentioned missing symbolic link (ubuntu to .). Edit the grub.cfg to remove the file=... and replace it with "live-media-path=/casper/ ignore_uuid"
            – ubfan1
            May 6 '16 at 23:43




            In 16.04 at least, the "copy all files" fails to boot because of the grub.cfg kernel line argument "file=/cdrom/preseed/ubuntu.seed". There is no such file, probably related to previously mentioned missing symbolic link (ubuntu to .). Edit the grub.cfg to remove the file=... and replace it with "live-media-path=/casper/ ignore_uuid"
            – ubfan1
            May 6 '16 at 23:43












            up vote
            1
            down vote













            Using dd worked for me, for some reason, the GUI version did not work. So, first, you might want to monitor the progess of dd, another options is using the SIGUSR1 option to trigger dd to report it's progress periodically, but this is more complicated than pv.



            Then:



            sudo dd if=path/to/image/file | pv | sudo dd of=/dev/device_you_want_to_use


            (/dev/device_you_want_to_use will typically be /dev/sdb, but check with df!)






            share|improve this answer



















            • 7




              Creating media this way does not result in UEFI-only bootable media. Emphasis is on the last paragraph of the question: "There is also one advantage to creating UEFI-only booting USB live media: You know that it definitely booted via UEFI." Having media that can boot both ways is a problem when trying to understand and setup a UEFI-bootable Ubuntu installation.
              – LiveWireBT
              Jul 27 '14 at 21:14






            • 1




              I see. The weird thing is that this way, I was able to produce a image that booted in UEFI mode (I know that, since the laptop was set to allow only uefi boot and also because of the inital screen). The preffered answer did not work for me, the computer would just not boot with an image created by just copying the files.
              – sup
              Jul 28 '14 at 7:32






            • 4




              @sup this method creates media that can be UEFI-booted. The problem is that it's not only UEFI-bootable, as requested in the question: it can also be booted in BIOS mode.
              – Darael
              Nov 20 '15 at 10:45















            up vote
            1
            down vote













            Using dd worked for me, for some reason, the GUI version did not work. So, first, you might want to monitor the progess of dd, another options is using the SIGUSR1 option to trigger dd to report it's progress periodically, but this is more complicated than pv.



            Then:



            sudo dd if=path/to/image/file | pv | sudo dd of=/dev/device_you_want_to_use


            (/dev/device_you_want_to_use will typically be /dev/sdb, but check with df!)






            share|improve this answer



















            • 7




              Creating media this way does not result in UEFI-only bootable media. Emphasis is on the last paragraph of the question: "There is also one advantage to creating UEFI-only booting USB live media: You know that it definitely booted via UEFI." Having media that can boot both ways is a problem when trying to understand and setup a UEFI-bootable Ubuntu installation.
              – LiveWireBT
              Jul 27 '14 at 21:14






            • 1




              I see. The weird thing is that this way, I was able to produce a image that booted in UEFI mode (I know that, since the laptop was set to allow only uefi boot and also because of the inital screen). The preffered answer did not work for me, the computer would just not boot with an image created by just copying the files.
              – sup
              Jul 28 '14 at 7:32






            • 4




              @sup this method creates media that can be UEFI-booted. The problem is that it's not only UEFI-bootable, as requested in the question: it can also be booted in BIOS mode.
              – Darael
              Nov 20 '15 at 10:45













            up vote
            1
            down vote










            up vote
            1
            down vote









            Using dd worked for me, for some reason, the GUI version did not work. So, first, you might want to monitor the progess of dd, another options is using the SIGUSR1 option to trigger dd to report it's progress periodically, but this is more complicated than pv.



            Then:



            sudo dd if=path/to/image/file | pv | sudo dd of=/dev/device_you_want_to_use


            (/dev/device_you_want_to_use will typically be /dev/sdb, but check with df!)






            share|improve this answer














            Using dd worked for me, for some reason, the GUI version did not work. So, first, you might want to monitor the progess of dd, another options is using the SIGUSR1 option to trigger dd to report it's progress periodically, but this is more complicated than pv.



            Then:



            sudo dd if=path/to/image/file | pv | sudo dd of=/dev/device_you_want_to_use


            (/dev/device_you_want_to_use will typically be /dev/sdb, but check with df!)







            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited May 28 '17 at 22:00









            dragon788

            556211




            556211










            answered Jul 27 '14 at 12:43









            sup

            2,11222035




            2,11222035








            • 7




              Creating media this way does not result in UEFI-only bootable media. Emphasis is on the last paragraph of the question: "There is also one advantage to creating UEFI-only booting USB live media: You know that it definitely booted via UEFI." Having media that can boot both ways is a problem when trying to understand and setup a UEFI-bootable Ubuntu installation.
              – LiveWireBT
              Jul 27 '14 at 21:14






            • 1




              I see. The weird thing is that this way, I was able to produce a image that booted in UEFI mode (I know that, since the laptop was set to allow only uefi boot and also because of the inital screen). The preffered answer did not work for me, the computer would just not boot with an image created by just copying the files.
              – sup
              Jul 28 '14 at 7:32






            • 4




              @sup this method creates media that can be UEFI-booted. The problem is that it's not only UEFI-bootable, as requested in the question: it can also be booted in BIOS mode.
              – Darael
              Nov 20 '15 at 10:45














            • 7




              Creating media this way does not result in UEFI-only bootable media. Emphasis is on the last paragraph of the question: "There is also one advantage to creating UEFI-only booting USB live media: You know that it definitely booted via UEFI." Having media that can boot both ways is a problem when trying to understand and setup a UEFI-bootable Ubuntu installation.
              – LiveWireBT
              Jul 27 '14 at 21:14






            • 1




              I see. The weird thing is that this way, I was able to produce a image that booted in UEFI mode (I know that, since the laptop was set to allow only uefi boot and also because of the inital screen). The preffered answer did not work for me, the computer would just not boot with an image created by just copying the files.
              – sup
              Jul 28 '14 at 7:32






            • 4




              @sup this method creates media that can be UEFI-booted. The problem is that it's not only UEFI-bootable, as requested in the question: it can also be booted in BIOS mode.
              – Darael
              Nov 20 '15 at 10:45








            7




            7




            Creating media this way does not result in UEFI-only bootable media. Emphasis is on the last paragraph of the question: "There is also one advantage to creating UEFI-only booting USB live media: You know that it definitely booted via UEFI." Having media that can boot both ways is a problem when trying to understand and setup a UEFI-bootable Ubuntu installation.
            – LiveWireBT
            Jul 27 '14 at 21:14




            Creating media this way does not result in UEFI-only bootable media. Emphasis is on the last paragraph of the question: "There is also one advantage to creating UEFI-only booting USB live media: You know that it definitely booted via UEFI." Having media that can boot both ways is a problem when trying to understand and setup a UEFI-bootable Ubuntu installation.
            – LiveWireBT
            Jul 27 '14 at 21:14




            1




            1




            I see. The weird thing is that this way, I was able to produce a image that booted in UEFI mode (I know that, since the laptop was set to allow only uefi boot and also because of the inital screen). The preffered answer did not work for me, the computer would just not boot with an image created by just copying the files.
            – sup
            Jul 28 '14 at 7:32




            I see. The weird thing is that this way, I was able to produce a image that booted in UEFI mode (I know that, since the laptop was set to allow only uefi boot and also because of the inital screen). The preffered answer did not work for me, the computer would just not boot with an image created by just copying the files.
            – sup
            Jul 28 '14 at 7:32




            4




            4




            @sup this method creates media that can be UEFI-booted. The problem is that it's not only UEFI-bootable, as requested in the question: it can also be booted in BIOS mode.
            – Darael
            Nov 20 '15 at 10:45




            @sup this method creates media that can be UEFI-booted. The problem is that it's not only UEFI-bootable, as requested in the question: it can also be booted in BIOS mode.
            – Darael
            Nov 20 '15 at 10:45










            up vote
            1
            down vote













            Extract from ISO file to FAT32



            Extracting the content of an Ubuntu 64-bit desktop ISO file to a partition with a FAT32 file system and a boot flag will do the job: to create a live drive, that boots only in UEFI mode. It is called 'Copy files from the ISO method' here (in the accepted answer).



            Test if running in UEFI or BIOS mode



            But it is easy to test in a running Ubuntu system (live as well as installed), if it was booted in UEFI or BIOS mode. Run this command line,



            test -d /sys/firmware/efi && echo efi || echo bios


            This makes it straightforward to use live systems that can be used in both boot modes, which can also be an advantage.



            See also the following links for a more detailed explanation and description of the method,



            help.ubuntu.com/community/Installation/iso2usb



            help.ubuntu.com/community/Installation/iso2usb/diy






            share|improve this answer



























              up vote
              1
              down vote













              Extract from ISO file to FAT32



              Extracting the content of an Ubuntu 64-bit desktop ISO file to a partition with a FAT32 file system and a boot flag will do the job: to create a live drive, that boots only in UEFI mode. It is called 'Copy files from the ISO method' here (in the accepted answer).



              Test if running in UEFI or BIOS mode



              But it is easy to test in a running Ubuntu system (live as well as installed), if it was booted in UEFI or BIOS mode. Run this command line,



              test -d /sys/firmware/efi && echo efi || echo bios


              This makes it straightforward to use live systems that can be used in both boot modes, which can also be an advantage.



              See also the following links for a more detailed explanation and description of the method,



              help.ubuntu.com/community/Installation/iso2usb



              help.ubuntu.com/community/Installation/iso2usb/diy






              share|improve this answer

























                up vote
                1
                down vote










                up vote
                1
                down vote









                Extract from ISO file to FAT32



                Extracting the content of an Ubuntu 64-bit desktop ISO file to a partition with a FAT32 file system and a boot flag will do the job: to create a live drive, that boots only in UEFI mode. It is called 'Copy files from the ISO method' here (in the accepted answer).



                Test if running in UEFI or BIOS mode



                But it is easy to test in a running Ubuntu system (live as well as installed), if it was booted in UEFI or BIOS mode. Run this command line,



                test -d /sys/firmware/efi && echo efi || echo bios


                This makes it straightforward to use live systems that can be used in both boot modes, which can also be an advantage.



                See also the following links for a more detailed explanation and description of the method,



                help.ubuntu.com/community/Installation/iso2usb



                help.ubuntu.com/community/Installation/iso2usb/diy






                share|improve this answer














                Extract from ISO file to FAT32



                Extracting the content of an Ubuntu 64-bit desktop ISO file to a partition with a FAT32 file system and a boot flag will do the job: to create a live drive, that boots only in UEFI mode. It is called 'Copy files from the ISO method' here (in the accepted answer).



                Test if running in UEFI or BIOS mode



                But it is easy to test in a running Ubuntu system (live as well as installed), if it was booted in UEFI or BIOS mode. Run this command line,



                test -d /sys/firmware/efi && echo efi || echo bios


                This makes it straightforward to use live systems that can be used in both boot modes, which can also be an advantage.



                See also the following links for a more detailed explanation and description of the method,



                help.ubuntu.com/community/Installation/iso2usb



                help.ubuntu.com/community/Installation/iso2usb/diy







                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited Dec 30 '17 at 7:39

























                answered Sep 19 '17 at 20:21









                sudodus

                22.2k32871




                22.2k32871

















                    protected by Community Jan 9 at 16:15



                    Thank you for your interest in this question.
                    Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).



                    Would you like to answer one of these unanswered questions instead?



                    Popular posts from this blog

                    How did Captain America manage to do this?

                    迪纳利

                    南乌拉尔铁路局