Vimal Sudhan
A PHP developer's weblog
A PHP developer's weblog
Want to create bootable usb sticks or pen drives? There is an easy way to do it, by using dd command.
dd stands for Data Description which is a low level copying command that does copying through raw data. By means of raw data, it has the power to clone the boot tables found in your iso cd/dvd images.
Syntax:
dd if=[source_iso] of=[device]
Just be careful while specifying input and output parameters! if is INPUT and of is OUTPUT. This command is nicknamed ‘Data Destroyer’, reversing the parameters will result in loss of some or all data in disk.
Example
dd if=~/Download/boot.iso of=/dev/sdc
You can use findfs command to know your usb device name
findfs LABEL="DEVICE_LABEL"
I have already cautioned you. Please be careful while using this dd command. Be feared of ‘Data Destroyer’
December 12, 2010 - 2:28 am
Thanks for sharing, Vimal! is there any gui tool to do same?
December 12, 2010 - 9:27 am
useful command… data destroyer haheha if i get access to office network
December 12, 2010 - 7:39 pm
@Philip, Yes! you can use liveusb-creator. ‘yum install liveusb-creator’. Its available both for windows and linux.