How do I make a bootable USB stick from an ISO image? I'm running Kubuntu 12.04

93,986

Solution 1

Regarding upgrading firmware using linux:

You can refer to this page from lenovo forum. It worked for my x220. http://forums.lenovo.com/t5/Linux-Discussion-Knowledge-Base/Updating-the-BIOS-via-USB-X220-s-running-Linux/ta-p/674677

Here I paste the steps over, but credit goes to writer of geteltorito.pl

1.Get the bios update iso (8duj10uc.iso or later) from the lenovo support site.

2.Get 'geteltorito' and extract the boot image from the iso (isobar.c probably works too)

$wget 'http://www.uni-koblenz.de/~krienke/ftp/noarch/geteltorito/geteltorito.pl'

$perl geteltorito.pl 8duj10uc.iso > biosupdate.img

3.Copy the image to the usb thumdrive

$ sudo dd if=biosupdate.img of=/dev/usbthumdrive bs=512K

Reboot, Press F12 and boot from thumb drive.

Solution 2

Why are you trying to "burn" an image to a USB stick? "burning" refers to a laser printing a pattern of holes into the surface of an optical medium, which obviously does not apply to your USB stick.

Give Unetbootin a try, it may actually work (it works for Windows 7 as well).

Alternatively, you could just copy the contents of the image 1:1 to your stick. First, identify your stick with its device name. You can find this information using "Disk Utility" (or search for "palimpsest" in your Dash). It will look like /dev/sdb.

Next, open a terminal and run:

sudo dd if=myiso.iso of=/dev/sdx

Where myiso.iso should be replaced with the path to your image, and x with the correct device letter of your USB stick. NOTE: accidentally entering a wrong device name can result in data loss on other storage media attached, so beware!

Now, your USB drive should contain a 1:1 copy of the image. Try booting it.

Solution 3

When you download ubuntu there are some instructions. http://www.ubuntu.com/download/help/create-a-usb-stick-on-ubuntu.
They basically just tell you to run startup disk creator

Solution 4

From within the software center, or on their page, you can download a very nice program called Unetbootin, which should do what you're looking for!

Share:
93,986

Related videos on Youtube

MountainX
Author by

MountainX

You may be interested in the story of SE moderator Monica Cellio and how she was unfairly treated by the corporate management of this site. More info here. An update is available. Let's hope we can cultivate a more fair environment for content creators and moderators going forward.

Updated on September 18, 2022

Comments

  • MountainX
    MountainX over 1 year

    Why won't kb3 (in Kubuntu 12.04) recognize a USB drive and allow me to burn an ISO image to it?

    kb3 is the default iso burning application and it gets generally good reviews. But it pops up a dialog telling me that I don't have an optical drive and it refuses to allow me to select the USB drive. What am I overlooking? The computer is a ThinkPad X220 tablet without an optical drive.

    What's another recommended way to burn an ISO to a USB drive in Kubuntu? The ISO is for a firmware update utility. (My question is not about how to install Ubuntu.)

    • Nande
      Nande almost 8 years
      Unetbooting currently has a problem with kubuntu. (and other debian based distros). Once you install the system, it won't boot D:
    • MountainX
      MountainX almost 8 years
      dd has become my go-to tool for making bootable USB sticks now. Works perfectly every time on every distro I have tried (arch, opensuse, kubuntu, etc.)
  • MountainX
    MountainX over 11 years
    I don't think that's what I'm looking for. I'm not trying to create a Linux boot disk. My ISO image is for a firmware update program. I'm working within Kubuntu at the moment. I need to burn this ISO image to my USB stick. KB3 won't let me do it. Suggestions?
  • MountainX
    MountainX over 11 years
    I'd still like to know why kb3 won't work. Many places around the net indicate kb3 should do the job. I can't seem to figure out how. Anyway, I decided to use dd just before you posted your reply. dd is the easier approach, but I'd like to figure out this mystery of kb3 now too.
  • Admin
    Admin over 11 years
    Because K3B is a burning solution. It detects optical drives through wodim.
  • MountainX
    MountainX over 11 years
    Thanks. Very helpful. You should post the full steps in your answer above, so there is a full copy of the solution here.
  • Kevin Zhu
    Kevin Zhu about 11 years
    No problem, I pasted them over
  • web.learner
    web.learner about 11 years
    Welcome to Ask Ubuntu! Whilst this may theoretically answer the question, it would be preferable to include the essential parts of the answer here, and provide the link for reference.
  • Gabriel Staples
    Gabriel Staples over 7 years
    Your command wget 'http://www.uni-koblenz.de/~krienke/ftp/noarch/geteltorito/g‌​eteltorito.pl' seems to be broken. :( Link is bad.
  • Gabriel Staples
    Gabriel Staples over 7 years
    I found the solution! Instead of your commands wget 'http://www.uni-koblenz.de/~krienke/ftp/noarch/geteltorito/g‌​eteltorito.pl' and perl geteltorito.pl 8duj10uc.iso > biosupdate.img do the following two commands: sudo apt-get install genisoimage and geteltorito -o biosupdate.img 8duj10uc.iso. I tried it, and it works. Source: workaround.org/article/…