How to: Create Live USB, the easy way!

Ever wondered if you could create a live usb without using any third party software ?

Ever wondered if you could create a live usb without using any third party software ? Read on…

Pre-requisites:

We’ll be using the dd command to write the iso file to the usb stick. The general syntax is shown below:

# Use the dd command to write to your usb
# parameters: if='input file', of='output file/device'
# use dmesg to find out your usb device. Ex: /dev/sdb
# replace sdx with your device name
# use an optional buffer size "bs" to do buffered writes
sudo dd if=path_to_iso.iso of=/dev/sdx bs=4M

And now, the example. Suppose you want to create a live usb out of your ubuntu-12.04 iso, assuming that your usb stick is mounted at /dev/sdb, the command to issue is:

# Example
sudo dd if=ubuntu-12.04.iso of=/dev/sdb bs=4M

Extremely simple, isn’t it ?

IMPORTANT:

Published on June 05, 2012