PDA

View Full Version : HOWTO: Creating a iso image


Virogenesis
February 4th, 2006, 04:24 AM
This is a simple howto on creating a ISO.
Without the use of any programs just simple command line.
Very basic very useful.
Great for making back up images

Open up a terminal window into this window type: dd if=/dev/cdrom of=$HOME/cdrom_image.iso

I'll now explain what this all means in the key below

dd - disk duplicate
if - input file
of- output file
$HOME - system variable that points to your user directory.

Ps:Change cdrom_image to what ever you want the iso to be called.

daredevil
March 1st, 2006, 11:26 AM
Simple and sweet. nice tip

RaptorRaider
March 1st, 2006, 03:07 PM
And the following would work too, right (as in "Is dd limited to (CD-)drives?")?
dd if=/etc/home/me/stuff of=$HOME/imageofstuff.iso

ounas
March 1st, 2006, 03:23 PM
Thanks, I needed that..

-Ounas :-D

Nate53085
March 2nd, 2006, 09:28 PM
I believe you can also

sudo cat /dev/hdc > outputfile