LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - General (https://www.linuxquestions.org/questions/linux-general-1/)
-   -   Creating an ISO from a Disk(Unreal Tournament 2003 Disk 2) (https://www.linuxquestions.org/questions/linux-general-1/creating-an-iso-from-a-disk-unreal-tournament-2003-disk-2-a-114628/)

Mustard010 11-10-2003 09:15 PM

Creating an ISO from a Disk(Unreal Tournament 2003 Disk 2)
 
Hey.

I want to know if it is possible to create an ISO using linux's cd writing utility. If possible, can you please tell me the command?

Also, I would also like to know the command to burn an ISO to a disk, anyone have ideas?

Thanks

shiny_spoon 11-10-2003 09:41 PM

I find the easiest way to create an ISO or burn one, is with K3B.

To create an ISO, open up K3B and choose TOOLS > CD > COPY CD. Afterwards click the only create image box and choose where to write it to.

To burn one, go to TOOLS > CD > BURN ISO IMAGE.

If you're looking for a command line option, wait for the pro's to break out the answers. :)

Mustard010 11-10-2003 09:49 PM

Hehe, thanks, I'll go look into it,

but is there a command line option like you said?

Thanks again

shiny_spoon 11-10-2003 09:56 PM

I know you can burn ISO's with cdrecord. But I'm unsure about making them (though I think it would only make sense that you could).

How to burn an ISO with cdrecord.

green_dragon37 11-10-2003 10:08 PM

dd if=/dev/cdrom (or whatever) of=file.iso

That's all there is to it.

Ian

homey 11-10-2003 10:09 PM

I'm no expert but it would seem that you only have one cdrom device or you would do a direct copy. With that in mind you need to make the iso image first then burn that iso image to the blank cd.

Put the cdrom with data in and mount it: mount /mnt/cdrom
Now cd /mnt/cdrom
mkisofs -r -J -o /home/image1.iso .
Note: that period at the end is important as it says to use the present directory for the imput source.
Now you can burn the image to a new cd.
cdrecord -v speed=4 dev=0,0,0 /home/image1.iso

Note: the speed and dev may be different for you.

shiny_spoon 11-10-2003 10:10 PM

I successfully made an ISO with the dd command.

First load up your CD.

Then:
$df /mnt/dvd (take note of the 'used' field, say its 610550)
And:
$dd if=/mnt/dvd of=/pathto/whatever.iso bs=1k count=610550

Replace /mnt/dvd with the mount point of your cdrom.

Hope that works for ya :)

EDIT: dang, green_dragon37 beat me to it...

JZL240I-U 11-11-2003 03:24 AM

If you want to have a go at the command line, have in particular a look at

http://www.troubleshooters.com/linux/coasterless.htm

(really good, that one)
and also at

http://www.faqs.org/docs/Linux-HOWTO...TO.html#ss4.17

shiny_spoon 11-11-2003 12:21 PM

Thanks JZL240I-U, I thought the second link was pretty helpful.

Oh and I have to thank green_dragon37 for that sweet how-to about the wireless logitech keyboard and mouse on his site! I've been looking for one of those for a while.

green_dragon37 11-11-2003 05:20 PM

Great! I was wondering if anyone had got anything out of it. :D

Ian

fancypiper 11-11-2003 05:29 PM

# CD burning copying ripping info
Is it configured and what is the device? Command this to find out:
cdrecord -scanbus
Adding an IDE CD-Writer to Linux
CD Writing HOWTO
Burning CDs on Linux
# Burn an ISO to disk
cdrecord -v speed=<burning speed> dev=<your device> /path/to/foo.iso
# Burn from disk to disk
cdrecord -v dev=<your device> speed=<burning speed> -isosize /dev/cdrom
# Generate an ISO from a directory.
mkisofs -Jr -o foo.iso /path/to/directory
mkisofs -vrTJUV "Label" -o foo.iso /path/to/directory
# Generate an ISO from a CD
dd if=/dev/cdrom of=foo.iso
# cdparanoia - search for a drive with reporting of autosense:
cdparanoia -vsQ
# Rip a complete audio CD with cdparanoia
cdparanoia -B "1-"
Linux MP3 CD Burning mini-HOWTO
# Convert mp3 to wav with lame
for i in *.mp3; do lame --decode $i `basename $i .mp3`.wav; done
# Burn a CD from wav files
cdrecord -v -audio -pad speed=<burning speed> dev=<your device> /path/to/*.wav
# Erase a CDRW
cdrecord -v dev=<your device> speed=<burning speed> blank=fast

JZL240I-U 11-12-2003 12:53 AM

Hey thanks, fancypiper, your post is a treasure trove, as always.

Do you know, btw., why I can't read out a music CD using the dd command?

How do I copy a music CD to my hard disk using command line?

P.S.: You might want to include the command
Code:

isoinfo -i -d /dev/cdrom
in your list, since it gives some nice information about any source-CDs you want to copy. See also the first link I included in my above post.

randomblast 11-12-2003 06:09 AM

for audio cds:-
use cdda2wav or cdparanoia and then encode it using oggenc or something
grip is a good front-end, i think k3b also rips, although i've never used it.

JZL240I-U 11-12-2003 07:17 AM

Quote:

Originally posted by randomblast
for audio cds:-
use cdda2wav or cdparanoia and then encode it using oggenc or something
grip is a good front-end, i think k3b also rips, although i've never used it.
Thank you, I'll try cdparanoia (read a lot about that). And yes, K3b rips very neatly.

But why won't dd work? Can't it get cdda data?

fancypiper 11-12-2003 07:40 AM

dd is for a data CD. Audio CDs have CDDA (CD digital audio) files on it.

# Rip a complete audio CD with cdparanoia
cdparanoia -B "1-"


All times are GMT -5. The time now is 12:04 PM.