LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Hardware (https://www.linuxquestions.org/questions/linux-hardware-18/)
-   -   cdparanoia help (https://www.linuxquestions.org/questions/linux-hardware-18/cdparanoia-help-108321/)

eduac 10-25-2003 08:53 AM

cdparanoia help
 
hi anyone,

i need a help to make the burn into my cd-r with cdparanoia, anyone have a idea to do this? any list of commands to work on?

Faecal 10-25-2003 09:59 AM

cdparanoia is a tool for reading audio data from CDs. To burn cds, you'll want to use cdrecord.

As root, execute "cdrecord -scanbus". Hopefully this will show you a device found on your system. You can then burn CDRs by creating an ISO filesystem using mkisofs, and then passing this to cdrecord. For instance:

mkisofs -o /tmp/somecd.iso /my/path/to/be/burned
cdrecord dev=0,0,0 speed=12 /tmp/somecd.iso

Both cdrecord and mkisofs have comprehensive manpages.

eduac 10-25-2003 11:03 AM

thanks a lot dude....i will try!!! :-)

eduac 10-28-2003 01:24 PM

i make the mkisofs with sucess...but when i try to do the command mount -w -t iso9660 /dev/cdrom /cdrom appears the message : mount: block device /dev/cdrom is write-protected but explicit `-w' flag given


:(

eduac 10-29-2003 08:07 PM

anyone have a idea to solve this problem?...please

maroonbaboon 10-30-2003 05:59 AM

Why are you trying to mount /dev/cdrom? Once you have the ISO image you burn it to the raw device with cdrecord. I think this requires SCSI emulation on the CD writer tho', and 'cdrecord -scanbus' should tell you if your writer is configured correctly for this.

If you want to check your ISO image you can mount it as if it was an actual CD using (as root):

mount -t iso9660 -o ro,loop=/dev/loop0 my_iso_image_file /cdrom

Best unmount it again before burning it to CD. The CD-writing HOWTO

http://www.tldp.org/HOWTO/CD-Writing-HOWTO.html

is a pretty good source of details.


All times are GMT -5. The time now is 11:42 AM.