ISO to USB: Difference between revisions

From Open Source Ecology
Jump to navigation Jump to search
No edit summary
Line 1: Line 1:
*Instructions from [https://www.ubuntu.com/download/desktop/create-a-usb-stick-on-ubuntu] for Ubuntu Linux are shown here
*Instructions from [https://www.ubuntu.com/download/desktop/create-a-usb-stick-on-ubuntu] for Ubuntu Linux are shown here
=Windows Users=
Read USB Boot device instruction here:
https://help.ubuntu.com/community/Installation/FromUSBStickQuick
=Linux and Other Users=
Read USB Boot device instruction here:
https://help.ubuntu.com/community/Installation/FromUSBStick
*Use [[Startup Disk Creator]] to make a bootabl USB disk from an [[ISO File]].
*Use [[Startup Disk Creator]] to make a bootabl USB disk from an [[ISO File]].
*If USB disk is not formatted, use [[Disks]] utility to format it. I formatted an 8GB disk to ext4, which is linux compatible only.
*If USB disk is not formatted, use [[Disks]] utility to format it. I formatted an 8GB disk to ext4, which is linux compatible only.
Line 30: Line 39:
=Links=
=Links=
*[[OSE Linux]]
*[[OSE Linux]]
[https://nathanpfry.com/how-to-customize-an-ubuntu-installation-disc/#comment-30033 Linux Command-line method for modifying ISO's Ubuntu 16.04 Compatible]

Revision as of 17:19, 5 March 2017

  • Instructions from [1] for Ubuntu Linux are shown here

Windows Users

Read USB Boot device instruction here: https://help.ubuntu.com/community/Installation/FromUSBStickQuick

Linux and Other Users

Read USB Boot device instruction here: https://help.ubuntu.com/community/Installation/FromUSBStick

  • Use Startup Disk Creator to make a bootabl USB disk from an ISO File.
  • If USB disk is not formatted, use Disks utility to format it. I formatted an 8GB disk to ext4, which is linux compatible only.
  • Screenshots:

Install1.jpg

Install2.jpg

Everything looked ok until this point:

Install3.jpg

After I typed in my root password, I got an error message that the bootloader failed to install.

I tried running the USB anyway. Got to the boot choices screen, selected to boot from USB, but the new system did not load. Got a blank screen, nothing further happened.


Alternative way for console

You can install the .iso file to a usb using just one command from the Terminal:

  • sudo dd if=[iso file] of=[destination device]

where "iso file" is the source .iso file, and "destination device" is the file that was attached to the USB for example /dev/sdc1. If you do not know the device file, you can check it with the command "dmesg".

Example:

  • sudo dd if=/media/Downdloads/ubuntu-16.04.1-2017.02.10v2-desktop-amd64.iso of=/dev/sdb1

Unetbootin

Unetbootin did not work either.

Links

Linux Command-line method for modifying ISO's Ubuntu 16.04 Compatible