jim bob and joe bob wrote:
Here's the deal: I did your cdrecord -scanbus dev=ATA and cdrecord
-scanbus. The results are the same:
Cdrecord: V.1.10 (powerpc-unknown-linux-gnu) CDRECORD (1) (C) Jorg
Schilling
cdrecord: No such file or directory. Cannot open SCSI driver.
cdrecord: For possible targets try 'cdrecord -scanbus'. Make sure you
are root.
I edited my /etc/default/cdrecord file to read as follows:
#ident @(#)cdrecord.dfl 1.2 00/04/16 Copyr 1998 J. Schilling
#
# This file is /etc/default/cdrecord
# It contains defaults that are used if no command line option
# or environment is present.
#
# The default device, if not specified elswhere
#
CDR_DEVICE=pioneer
#
# The default speed, if not specified elswhere
#
CDR_SPEED=4
#
# The default FIFO size if, not specified elswhere
#
CDR_FIFOSIZE=4m
#
# The following definitions allow abstract device names.
# They are used if the device name does not contain the
# the characters ',', ':', '/' and '@'
#
# drive name device speed fifosize driveropts
#
teac= 1,3,0 -1 -1 ""
panasonic= 1,4,0 -1 -1 ""
plextor= 1,4,0 12 -1 ""
sanyo= 1,4,0 12 -1 burnproof
pioneer= 1,1,0 4 4m burnproof
cdrom= 0,6,0 2 1m ""
The values I changed were in the line beginning CDR_DEVICE from sony to
pioneer and in the list at the bottom:
pioneer= 1,1,0 4 4m burnproof
Those values are wild guesses and are probably wrong. It seems to me
that if cdrecord cannot look at the ide buses then there is not much
hope of getting it to do anything. I think I need a different version
of cdrecord. What do you think?
kk
Post by jim bob and joe bobPost by I R A Darth AggieOn Mon, 07 Feb 2005 08:40:25 -0600,
+ Is there a way to cdrecord to an ide device? I am using Debian
woody on + a beige g3 and would like to try to burn a disk image from
linux. + cdrecord -scanbus only finds my external linux drive - the
only scsi + device on the system. The burner is ide.
Yes. But you have to kind of fake your devices a bit. Try this, as
You should get a lot of "stuff", and a warning about using "badly
designed ATAPI via /dev/hd* interface" followed by a list of your
devices.
You can tell cdrecord to use the ATAPI interface by default by
modifying the /etc/default/cdrecord configuration file. Go to the
bottom, where you can input "abstract device names". In my system, I
have two ATAPI burner devices (one DVD+/-RW one CD-RW). I'm not sure
dvd= ATA:1,0,0 -1 -1 burnfree
cdrom= ATA:1,1,0 -1 -1 ""
Modify the ATA:x,y,z values to match your burner(s). Now, I can
cdrecord dev=dvd somedisk.iso
cdrecord dev=cdrom somedisk.iso
This is a lot easier than trying to remember "1,0,0 or is it 0,0,1??" :-)
James
Thanks much. I'll try that.
kk