Creating an ISO from a Disk(Unreal Tournament 2003 Disk 2)
Linux - GeneralThis forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place.
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
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
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.
Last edited by shiny_spoon; 11-11-2003 at 01:24 PM..
Distribution: Fedora Core 6 Gentoo WinXP Home Edition
Posts: 5,139
Thanked: 0
# 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
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.
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.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.