how to extract iso from a CD/DVD

Booting, installing, newbie
Post Reply
Message
Author
vientito
Posts: 83
Joined: Sun 17 Sep 2006, 23:22

how to extract iso from a CD/DVD

#1 Post by vientito »

given a puppylinux disc sitting in drive, how do we extract the iso from it and burn on another blank? is there a utility to use?

PaulBx1
Posts: 2312
Joined: Sat 17 Jun 2006, 03:11
Location: Wyoming, USA

#2 Post by PaulBx1 »

This thread ought to give you what you need:

http://www.murga.org/~puppy/viewtopic.php?t=10989

There are probably "guier" ways to do it too, but this works for me.

User avatar
Flash
Official Dog Handler
Posts: 13071
Joined: Wed 04 May 2005, 16:04
Location: Arizona USA

#3 Post by Flash »

Puppy 2.10's Menu -> Multimedia -> WishCD CD writer has a "Copy data CD" button that may or may not make an exact copy. It only costs the price of a CD-R to try. Let us know if it works. :lol:

Be advised that the process requires enough memory somewhere (usually on a hard drive) for the program to temporarily store the contents of the disk you are copying. In the case of a fresh Puppy, that should be less than 100 MB. It may be more than that if you're cloning a customized puppy, but certainly not more than 700 MB.

GuestToo
Puppy Master
Posts: 4083
Joined: Wed 04 May 2005, 18:11

#4 Post by GuestToo »

to create an iso file from a cd or dvd, you can type:

cat /dev/cdrom > image.iso

or:

dd if=/dev/cdrom of=image.iso

if /dev/cdrom is not the name of your drive, use the correct name ... for example, my drive is /dev/hdc

or this might be more reliable:

type:

isoinfo -d -i /dev/cdrom

this should display information like this:
Logical block size is: 2048
Volume size is: 358979

use this information to type something like this:

dd if=/dev/cdrom of=image.iso bs=2048 count=358979 conv=notrunc,noerror

to burn the iso, you can use cdrecord, or the burniso2cd program in the Start, Multimedia menu ... or use whatever cd burning program you like

Post Reply