Re: Kernel problem ?

2001-09-29 Thread yoros
On Sun, Sep 30, 2001 at 12:45:28AM +0200, Oyvind A. Holm wrote:
> On 2001-09-29 20:14 [EMAIL PROTECTED] wrote:
> 
> > I was making an iso image from a CD with the following command:
> >
> > dd if=/dev/cdrom of=image.iso
> >
> > when the image.iso where finished (I think it) there were an error that
> > look as :
> >
> > scsi0: ERROR on channel 0, id 0, lun 0, CDB: 0x03 00 00 00 40 00
> > Info fld=0x53f78, Current sd0b:00: sns = f0  3
> > ASC=11 ASCQ= 5
> > Raw sense data:0xf0 0x00 0x03 0x00 0x05 0x3f 0x78 0x0a 0x00 0x00 0x00
> > 0x00 0x11
> > 0x05 0x00 0x00 0x00 0x00
> >   I/O error: dev 0b:00, sector 1375712
> >   I/O error: dev 0b:00, sector 1375716
> >
> > I don't know where is the problem and I don't find anything over
> > internet.
> >
> > Later, I recorded one CD and when I was verifying if the record is good
> > I get the same error. I verify that with : md5sum /dev/cdrom
> 
> Have you tried using head(1) to limit the stream, you might have read
> beyond end of image.
> 
> head -c 678039552 /dev/cdrom >image.iso
> 
> for NON_US potato.
> 
> Regards,
> Øyvind

Ok, but I know that with cat /dev/cdrom > image.iso I can make an iso
image... and I tried that command with a CD not recorded in my Writter
and it works.

I think it could be that I don't do the things well when I record a CD.
I used the following command:

mkisofs -q -r cdvarios | cdrecord dev=0,1,0 speed=16 \
driveropts=burnproof fs=15M -

I have read that I must give tsize option to the cdrecord, could that be
a mistake? must I do that or is not needed?

Now, could you tell me where can I find information about this kind of
problem? I was searching in google and nothing... :(

Thank you.

Sorry for my english.
-- 
yoros



Re: Kernel problem ?

2001-09-29 Thread Oyvind A. Holm
On 2001-09-29 20:14 [EMAIL PROTECTED] wrote:

> I was making an iso image from a CD with the following command:
>
>   dd if=/dev/cdrom of=image.iso
>
> when the image.iso where finished (I think it) there were an error that
> look as :
>
> scsi0: ERROR on channel 0, id 0, lun 0, CDB: 0x03 00 00 00 40 00
> Info fld=0x53f78, Current sd0b:00: sns = f0  3
> ASC=11 ASCQ= 5
> Raw sense data:0xf0 0x00 0x03 0x00 0x05 0x3f 0x78 0x0a 0x00 0x00 0x00
> 0x00 0x11
> 0x05 0x00 0x00 0x00 0x00
>   I/O error: dev 0b:00, sector 1375712
>   I/O error: dev 0b:00, sector 1375716
>
> I don't know where is the problem and I don't find anything over
> internet.
>
> Later, I recorded one CD and when I was verifying if the record is good
> I get the same error. I verify that with : md5sum /dev/cdrom

Have you tried using head(1) to limit the stream, you might have read
beyond end of image.

head -c 678039552 /dev/cdrom >image.iso

for NON_US potato.

Regards,
Øyvind

+== http://www.sunbase.org/sunny ===+
| OpenPGP: 0xAD19826C 2000-01-24 Øyvind A. Holm <[EMAIL PROTECTED]> |
| Fingerprint: EAE5 DCA0 0626 5DAA 72F8  0435 2E2B E476 AD19 826C   |
+== cat /dev/urandom >/bin/laden ===+



Re: Kernel problem ?

2001-09-29 Thread yoros

On Sun, Sep 30, 2001 at 12:45:28AM +0200, Oyvind A. Holm wrote:
> On 2001-09-29 20:14 [EMAIL PROTECTED] wrote:
> 
> > I was making an iso image from a CD with the following command:
> >
> > dd if=/dev/cdrom of=image.iso
> >
> > when the image.iso where finished (I think it) there were an error that
> > look as :
> >
> > scsi0: ERROR on channel 0, id 0, lun 0, CDB: 0x03 00 00 00 40 00
> > Info fld=0x53f78, Current sd0b:00: sns = f0  3
> > ASC=11 ASCQ= 5
> > Raw sense data:0xf0 0x00 0x03 0x00 0x05 0x3f 0x78 0x0a 0x00 0x00 0x00
> > 0x00 0x11
> > 0x05 0x00 0x00 0x00 0x00
> >   I/O error: dev 0b:00, sector 1375712
> >   I/O error: dev 0b:00, sector 1375716
> >
> > I don't know where is the problem and I don't find anything over
> > internet.
> >
> > Later, I recorded one CD and when I was verifying if the record is good
> > I get the same error. I verify that with : md5sum /dev/cdrom
> 
> Have you tried using head(1) to limit the stream, you might have read
> beyond end of image.
> 
> head -c 678039552 /dev/cdrom >image.iso
> 
> for NON_US potato.
> 
> Regards,
> Øyvind

Ok, but I know that with cat /dev/cdrom > image.iso I can make an iso
image... and I tried that command with a CD not recorded in my Writter
and it works.

I think it could be that I don't do the things well when I record a CD.
I used the following command:

mkisofs -q -r cdvarios | cdrecord dev=0,1,0 speed=16 \
driveropts=burnproof fs=15M -

I have read that I must give tsize option to the cdrecord, could that be
a mistake? must I do that or is not needed?

Now, could you tell me where can I find information about this kind of
problem? I was searching in google and nothing... :(

Thank you.

Sorry for my english.
-- 
yoros


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Re: Kernel problem ?

2001-09-29 Thread Oyvind A. Holm

On 2001-09-29 20:14 [EMAIL PROTECTED] wrote:

> I was making an iso image from a CD with the following command:
>
>   dd if=/dev/cdrom of=image.iso
>
> when the image.iso where finished (I think it) there were an error that
> look as :
>
> scsi0: ERROR on channel 0, id 0, lun 0, CDB: 0x03 00 00 00 40 00
> Info fld=0x53f78, Current sd0b:00: sns = f0  3
> ASC=11 ASCQ= 5
> Raw sense data:0xf0 0x00 0x03 0x00 0x05 0x3f 0x78 0x0a 0x00 0x00 0x00
> 0x00 0x11
> 0x05 0x00 0x00 0x00 0x00
>   I/O error: dev 0b:00, sector 1375712
>   I/O error: dev 0b:00, sector 1375716
>
> I don't know where is the problem and I don't find anything over
> internet.
>
> Later, I recorded one CD and when I was verifying if the record is good
> I get the same error. I verify that with : md5sum /dev/cdrom

Have you tried using head(1) to limit the stream, you might have read
beyond end of image.

head -c 678039552 /dev/cdrom >image.iso

for NON_US potato.

Regards,
Øyvind

+== http://www.sunbase.org/sunny ===+
| OpenPGP: 0xAD19826C 2000-01-24 Øyvind A. Holm <[EMAIL PROTECTED]> |
| Fingerprint: EAE5 DCA0 0626 5DAA 72F8  0435 2E2B E476 AD19 826C   |
+== cat /dev/urandom >/bin/laden ===+


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Re: Kernel problem ?

2001-09-29 Thread Johannes Weiss
HI,
> [...]
> Later, I recorded one CD and when I was verifying if the record is good
> I get the same error. I verify that with : md5sum /dev/cdrom
> ...
I had the same problem while copying an copy protected Win-Game (not for 
me), with an ATAPI CD-ROM...
Perhaps your CD was copy protected too, there are some CD's with wrong 
sectors for making problems while copying I think

Weissi



Kernel problem ?

2001-09-29 Thread yoros
I was making an iso image from a CD with the following command:

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

when the image.iso where finished (I think it) there were an error that
look as :

scsi0: ERROR on channel 0, id 0, lun 0, CDB: 0x03 00 00 00 40 00
Info fld=0x53f78, Current sd0b:00: sns = f0  3
ASC=11 ASCQ= 5
Raw sense data:0xf0 0x00 0x03 0x00 0x05 0x3f 0x78 0x0a 0x00 0x00 0x00
0x00 0x11
0x05 0x00 0x00 0x00 0x00
  I/O error: dev 0b:00, sector 1375712
  I/O error: dev 0b:00, sector 1375716

I don't know where is the problem and I don't find anything over
internet.

Later, I recorded one CD and when I was verifying if the record is good
I get the same error. I verify that with : md5sum /dev/cdrom
...

Thank you.

-- 
yoros



Re: Kernel problem ?

2001-09-29 Thread Johannes Weiss

HI,
> [...]
> Later, I recorded one CD and when I was verifying if the record is good
> I get the same error. I verify that with : md5sum /dev/cdrom
> ...
I had the same problem while copying an copy protected Win-Game (not for 
me), with an ATAPI CD-ROM...
Perhaps your CD was copy protected too, there are some CD's with wrong 
sectors for making problems while copying I think

Weissi


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Kernel problem ?

2001-09-29 Thread yoros

I was making an iso image from a CD with the following command:

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

when the image.iso where finished (I think it) there were an error that
look as :

scsi0: ERROR on channel 0, id 0, lun 0, CDB: 0x03 00 00 00 40 00
Info fld=0x53f78, Current sd0b:00: sns = f0  3
ASC=11 ASCQ= 5
Raw sense data:0xf0 0x00 0x03 0x00 0x05 0x3f 0x78 0x0a 0x00 0x00 0x00
0x00 0x11
0x05 0x00 0x00 0x00 0x00
  I/O error: dev 0b:00, sector 1375712
  I/O error: dev 0b:00, sector 1375716

I don't know where is the problem and I don't find anything over
internet.

Later, I recorded one CD and when I was verifying if the record is good
I get the same error. I verify that with : md5sum /dev/cdrom
...

Thank you.

-- 
yoros


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]