* Help with cd writing scsi error?
@ 1999-08-02 15:51 Jerry Quinn
1999-08-02 19:00 ` Simon Piette
0 siblings, 1 reply; 4+ messages in thread
From: Jerry Quinn @ 1999-08-02 15:51 UTC (permalink / raw)
To: linuxppc-dev
Hi all. I'm trying to burn an audio CD on a stock kernel.org 2.2.10 kernel on
a Powercenter (R5 dist). The generic SCSI driver is built as a module. I'm
using cdrecord-1.8a24, the latest I could find (1.8a21 gives the same error).
I'm setting shmmax to 16M. My burner is a Panasonic CW-7502 with rev 4.17
firmware.
Basic info gathering from the drive seems to work fine. I can extract digital
audio as well. I pulled one track off a disc to use as a writing test. To do
the test I try the following with a CDR blank in the drive:
cdrecord dev=3,0 -dummy -audio track.wav
I get the following error -
cdrecord Input/output error. read track info: scsi sendcmd: retryable error
CDB: 52 01 00 00 00 FF 00 00 1C 00
status: 0x2 (CHECK CONDITION)
Sense Bytes: 70 00 05 00 00 00 0A 00 00 00 00 64 00 00 00
Sense Key: 0x5 Illegal Request, Segment 0
Sense Code: 0x64 Qual 0x00 (illegal mode for this track) Fru 0x0
Sense flags: Blk 0 (not valid)
cmd finished after 0.003s timeout 240s
cdrecord says it is using generic SCSI-3/mmc cdr driver (mmc_cdr) and driver
flags are SWABAUDIO.
Any ideas?
Thanks,
Jerry
--
Jerry Quinn Tel: (514) 761-8737
jquinn@nortelnetworks.com Fax: (514) 761-8505
Speech Recognition Research
[[ This message was sent via the linuxppc-dev mailing list. Replies are ]]
[[ not forced back to the list, so be sure to Cc linuxppc-dev if your ]]
[[ reply is of general interest. Please check http://lists.linuxppc.org/ ]]
[[ and http://www.linuxppc.org/ for useful information before posting. ]]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Help with cd writing scsi error?
1999-08-02 15:51 Help with cd writing scsi error? Jerry Quinn
@ 1999-08-02 19:00 ` Simon Piette
1999-08-02 19:58 ` Jerry Quinn
0 siblings, 1 reply; 4+ messages in thread
From: Simon Piette @ 1999-08-02 19:00 UTC (permalink / raw)
To: Jerry Quinn; +Cc: linuxppc-dev
Jerry Quinn wrote:
>
> Hi all. I'm trying to burn an audio CD on a stock kernel.org 2.2.10 kernel on
> a Powercenter (R5 dist). The generic SCSI driver is built as a module. I'm
> using cdrecord-1.8a24, the latest I could find (1.8a21 gives the same error).
> I'm setting shmmax to 16M. My burner is a Panasonic CW-7502 with rev 4.17
> firmware.
>
> Basic info gathering from the drive seems to work fine. I can extract digital
> audio as well. I pulled one track off a disc to use as a writing test. To do
> the test I try the following with a CDR blank in the drive:
>
> cdrecord dev=3,0 -dummy -audio track.wav
>
> I get the following error -
>
> cdrecord Input/output error. read track info: scsi sendcmd: retryable error
> CDB: 52 01 00 00 00 FF 00 00 1C 00
> status: 0x2 (CHECK CONDITION)
> Sense Bytes: 70 00 05 00 00 00 0A 00 00 00 00 64 00 00 00
> Sense Key: 0x5 Illegal Request, Segment 0
> Sense Code: 0x64 Qual 0x00 (illegal mode for this track) Fru 0x0
> Sense flags: Blk 0 (not valid)
> cmd finished after 0.003s timeout 240s
>
> cdrecord says it is using generic SCSI-3/mmc cdr driver (mmc_cdr) and driver
> flags are SWABAUDIO.
>
> Any ideas?
Could you try :
$ cdrecord dev=3,0,0 fs=3800k -dummy -audio track.wav
Arguments for dev: bus, id, lun
Have you 3 scsi buses and your cd-burner is at id 0 on your last
detected bus?
Simon
[[ This message was sent via the linuxppc-dev mailing list. Replies are ]]
[[ not forced back to the list, so be sure to Cc linuxppc-dev if your ]]
[[ reply is of general interest. Please check http://lists.linuxppc.org/ ]]
[[ and http://www.linuxppc.org/ for useful information before posting. ]]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Help with cd writing scsi error?
1999-08-02 19:00 ` Simon Piette
@ 1999-08-02 19:58 ` Jerry Quinn
1999-08-03 13:51 ` Jerry Quinn
0 siblings, 1 reply; 4+ messages in thread
From: Jerry Quinn @ 1999-08-02 19:58 UTC (permalink / raw)
To: Simon Piette; +Cc: linuxppc-dev
>> "Simon" == Simon Piette <spiette@generation.net> writes:
Simon> Jerry Quinn wrote:
>> Hi all. I'm trying to burn an audio CD on a stock kernel.org 2.2.10
>> kernel on a Powercenter (R5 dist). The generic SCSI driver is built as a
>> module. I'm using cdrecord-1.8a24, the latest I could find (1.8a21 gives
>> the same error). I'm setting shmmax to 16M. My burner is a Panasonic
>> CW-7502 with rev 4.17 firmware.
>>
>> Basic info gathering from the drive seems to work fine. I can extract
>> digital audio as well. I pulled one track off a disc to use as a writing
>> test. To do the test I try the following with a CDR blank in the drive:
>>
>> cdrecord dev=3,0 -dummy -audio track.wav
>>
>> I get the following error -
>>
>> cdrecord Input/output error. read track info: scsi sendcmd: retryable
>> error CDB: 52 01 00 00 00 FF 00 00 1C 00 status: 0x2 (CHECK CONDITION)
>> Sense Bytes: 70 00 05 00 00 00 0A 00 00 00 00 64 00 00 00 Sense Key: 0x5
>> Illegal Request, Segment 0 Sense Code: 0x64 Qual 0x00 (illegal mode for
>> this track) Fru 0x0 Sense flags: Blk 0 (not valid) cmd finished after
>> 0.003s timeout 240s
>>
>> cdrecord says it is using generic SCSI-3/mmc cdr driver (mmc_cdr) and
>> driver flags are SWABAUDIO.
>>
>> Any ideas?
Simon> Could you try :
Simon> $ cdrecord dev=3,0,0 fs=3800k -dummy -audio track.wav
I'll give this a try next (except for dev - see below). Should the smaller
buffer be required even when shmmax is 16 meg?
Simon> Arguments for dev: bus, id, lun
Simon> Have you 3 scsi buses and your cd-burner is at id 0 on your last
Simon> detected bus?
dev=3,0 has default bus 0, no? Other cdrecord operations are happy with
this and seem to talk to the drive reasonably.
Jerry
[[ This message was sent via the linuxppc-dev mailing list. Replies are ]]
[[ not forced back to the list, so be sure to Cc linuxppc-dev if your ]]
[[ reply is of general interest. Please check http://lists.linuxppc.org/ ]]
[[ and http://www.linuxppc.org/ for useful information before posting. ]]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Help with cd writing scsi error?
1999-08-02 19:58 ` Jerry Quinn
@ 1999-08-03 13:51 ` Jerry Quinn
0 siblings, 0 replies; 4+ messages in thread
From: Jerry Quinn @ 1999-08-03 13:51 UTC (permalink / raw)
To: Simon Piette, linuxppc-dev
>> "Jerry" == J <Quinn> writes:
>> "Simon" == Simon Piette <spiette@generation.net> writes:
Simon> Jerry Quinn wrote:
>>> Hi all. I'm trying to burn an audio CD on a stock kernel.org 2.2.10
>>> kernel on a Powercenter (R5 dist). The generic SCSI driver is built as a
>>> module. I'm using cdrecord-1.8a24, the latest I could find (1.8a21 gives
>>> the same error). I'm setting shmmax to 16M. My burner is a Panasonic
>>> CW-7502 with rev 4.17 firmware.
>>>
>>> Basic info gathering from the drive seems to work fine. I can extract
>>> digital audio as well. I pulled one track off a disc to use as a writing
>>> test. To do the test I try the following with a CDR blank in the drive:
>>>
>>> cdrecord dev=3,0 -dummy -audio track.wav
>>>
>>> I get the following error -
>>>
>>> cdrecord Input/output error. read track info: scsi sendcmd: retryable
>>> error CDB: 52 01 00 00 00 FF 00 00 1C 00 status: 0x2 (CHECK CONDITION)
>>> Sense Bytes: 70 00 05 00 00 00 0A 00 00 00 00 64 00 00 00 Sense Key: 0x5
>>> Illegal Request, Segment 0 Sense Code: 0x64 Qual 0x00 (illegal mode for
>>> this track) Fru 0x0 Sense flags: Blk 0 (not valid) cmd finished after
>>> 0.003s timeout 240s
>>>
>>> cdrecord says it is using generic SCSI-3/mmc cdr driver (mmc_cdr) and
>>> driver flags are SWABAUDIO.
>>>
>>> Any ideas?
Simon> Could you try :
Simon> $ cdrecord dev=3,0,0 fs=3800k -dummy -audio track.wav
I tried this last night and the fs=3800k makes no difference. The SCSI error
happens immediately after it starts writing.
Jerry
[[ This message was sent via the linuxppc-dev mailing list. Replies are ]]
[[ not forced back to the list, so be sure to Cc linuxppc-dev if your ]]
[[ reply is of general interest. Please check http://lists.linuxppc.org/ ]]
[[ and http://www.linuxppc.org/ for useful information before posting. ]]
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~1999-08-03 13:51 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
1999-08-02 15:51 Help with cd writing scsi error? Jerry Quinn
1999-08-02 19:00 ` Simon Piette
1999-08-02 19:58 ` Jerry Quinn
1999-08-03 13:51 ` Jerry Quinn
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).