Re: CD tools

2002-06-23 Thread Vidiot
>Dear Vidiot > >Is the audioCD ISO image also? Nope. ISO is for data CD, i.e. CD-ROM. >Can I use dd if=/mnt/cdrom1 of=data.iso bs=4b ? Nope. Use cdparanoia to extract audio files from an audio CD and use cdrecord to create an audio CD. MB -- e-mail: [EMAIL PROTECTED] It is God's job t

Re: CD tools

2002-06-23 Thread angelaoyu
Dear Vidiot Is the audioCD ISO image also? Can I use dd if=/mnt/cdrom1 of=data.iso bs=4b ? Thank you Vidiot wrote: > >If the CD has normal data, not iso image, can i use this command to make iso > >image > > You don't understand. Data CDs do not contain ISO images, they are the > ISO image.

Re: CD tools

2002-06-23 Thread Drew Hunt
Jonathan and Vidiot - Thanks for the lesson! I'll put that in the next version of the scripts. Drew On Sat, 22 Jun 2002 17:08:57 -0500 (CDT) Vidiot <[EMAIL PROTECTED]> wrote: > > > >>dd if=/mnt/cdrom1 of=data.iso bs=4b > > > >Almost - you have to use the device file that the /mnt/cdrom1 i

Re: CD tools

2002-06-22 Thread Vidiot
>If the CD has normal data, not iso image, can i use this command to make iso >image You don't understand. Data CDs do not contain ISO images, they are the ISO image. That is why the dd command works. When you direct copy the databits from the data CD, you are copying the "ISO" image. That is

CD tools

2002-06-22 Thread angelaoyu
Dear Vidiot If the CD has normal data, not iso image, can i use this command to make iso image Thank you Vidiot wrote: > > > >Dear Drew > > > >Thank you for your tools > > > >I tried to make iso image but got the error > > > >Do you have any idea? > > > >[root@mail angela]# mkisofs -J -o /mnt/

Re: CD tools

2002-06-22 Thread Vidiot
> >> dd if=/mnt/cdrom1 of=data.iso bs=4b > >Almost - you have to use the device file that the /mnt/cdrom1 is using - >like /dev/cdrom or whatever. Oops, I just cut and pasted from the original post. I do dd copies all the time. Really, I knew better :-) MB -- e-mail: [EMAIL PROTECTED]

Re: CD tools

2002-06-22 Thread Jonathan Bartlett
> dd if=/mnt/cdrom1 of=data.iso bs=4b Almost - you have to use the device file that the /mnt/cdrom1 is using - like /dev/cdrom or whatever. Jon > > MB > -- > e-mail: [EMAIL PROTECTED] It is God's job to forgive bin Laden. > It is our job to set up the

Re: CD tools

2002-06-22 Thread Vidiot
> >Dear Drew > >Thank you for your tools > >I tried to make iso image but got the error > >Do you have any idea? > >[root@mail angela]# mkisofs -J -o /mnt/cdrom1 data.iso >Warning: creating filesystem with (nonstandard) Joliet extensions > but without (standard) Rock Ridge extensions. >

CD tools

2002-06-22 Thread angelaoyu
Dear Drew Thank you for your tools I tried to make iso image but got the error Do you have any idea? [root@mail angela]# mkisofs -J -o /mnt/cdrom1 data.iso Warning: creating filesystem with (nonstandard) Joliet extensions but without (standard) Rock Ridge extensions. It is hi