Thanks for the information on SCSI emulation in Red Hat. It's good to know I don't have to do anything about that. I've read the CD-writter Howto and the man cdrecord, but I can't figure out what to enter for the 'dev' argument for cdrecord. The example shows dev=0,6,0 But that's for a SCSI device and mine is ATAPI. My burner is /dev/hdc in fstab In the BIOS its a secondary master. In windoze its E for the cdrom part and F for the burner I'm trying to copy some old tape songs into a CD. The program rec and the Gnome mixer are excellent for getting the songs into .wav files. All I need to do now is get cdrecord going. cdrecord -v speed=4 -pad -audio dev=?,?,? Any ideas about dev ? Oh, you'll notice I'm using my new, id. For some reason, somebody didn't like 'author'
Hey millward,
I just checked my IDE CD writer here, and I have the SCSI emulation configured. My writer is on the primary slave controller (/dev/hdb), and I use "cdrecord ... dev=0,0 ..."
To find out what yours is, try "cdrecord -scanbus" and see what you get.
Kevin
millward wrote:
Thanks for the information on SCSI emulation in Red Hat. It's good to know I don't have to do anything about that. I've read the CD-writter Howto and the man cdrecord, but I can't figure out what to enter for the 'dev' argument for cdrecord. The example shows dev=0,6,0 But that's for a SCSI device and mine is ATAPI. My burner is /dev/hdc in fstab In the BIOS its a secondary master. In windoze its E for the cdrom part and F for the burner I'm trying to copy some old tape songs into a CD. The program rec and the Gnome mixer are excellent for getting the songs into .wav files. All I need to do now is get cdrecord going. cdrecord -v speed=4 -pad -audio dev=?,?,? Any ideas about dev ? Oh, you'll notice I'm using my new, id. For some reason, somebody didn't like 'author' _______________________________________________ Roundtable mailing list Roundtable@muug.mb.ca http://www.muug.mb.ca/mailman/listinfo/roundtable
[sean@bob sean]$ cat /proc/scsi/scsi Attached devices: Host: scsi0 Channel: 00 Id: 02 Lun: 00 Vendor: HP Model: C5110A Rev: 3638 Type: Processor ANSI SCSI revision: 02 Host: scsi0 Channel: 00 Id: 03 Lun: 00 Vendor: HP Model: HP35480A Rev: T503 Type: Sequential-Access ANSI SCSI revision: 02 Host: scsi0 Channel: 00 Id: 00 Lun: 00 ^^ ^^ ^^ Vendor: HL-DT-ST Model: CD-RW GCE-8320B Rev: 1.02 Type: CD-ROM ANSI SCSI revision: 02
0,0,0 for me. My guess is that yours is the same, too.
Sean
On Fri, 10 May 2002, millward wrote:
Thanks for the information on SCSI emulation in Red Hat. It's good to know I don't have to do anything about that. I've read the CD-writter Howto and the man cdrecord, but I can't figure out what to enter for the 'dev' argument for cdrecord. The example shows dev=0,6,0 But that's for a SCSI device and mine is ATAPI. My burner is /dev/hdc in fstab In the BIOS its a secondary master. In windoze its E for the cdrom part and F for the burner I'm trying to copy some old tape songs into a CD. The program rec and the Gnome mixer are excellent for getting the songs into .wav files. All I need to do now is get cdrecord going. cdrecord -v speed=4 -pad -audio dev=?,?,? Any ideas about dev ? Oh, you'll notice I'm using my new, id. For some reason, somebody didn't like 'author' _______________________________________________ Roundtable mailing list Roundtable@muug.mb.ca http://www.muug.mb.ca/mailman/listinfo/roundtable
According to millward, a.k.a. author, a.k.a. Arthur:
Thanks for the information on SCSI emulation in Red Hat. It's good to know I don't have to do anything about that.
Well, support for SCSI emulation is automatic when you install Red Hat 7.x, but for older 6.2 systems you still have to manually set some things up. What I'd do on my 6.2 systems is add the following to the end of /etc/rc.d/rc.local:
# Support for CD-RW drive... /sbin/modprobe ide-scsi /sbin/modprobe sg
Then I'd add "alias scsi_hostadapter0 ide-scsi" to /etc/conf.modules (or /etc/modules.conf if you install the kernel updates), and add
append="hdc=ide-scsi"
to /etc/lilo.conf's stanza for linux. Oddly enough, it didn't seem to matter whether or not I did the mkinitrd and installed the initrd line in lilo.conf, so I never bothered with that
I've read the CD-writter Howto and the man cdrecord, but I can't figure out what to enter for the 'dev' argument for cdrecord. The example shows dev=0,6,0 But that's for a SCSI device and mine is ATAPI. My burner is /dev/hdc in fstab In the BIOS its a secondary master. In windoze its E for the cdrom part and F for the burner
Interesting. Is this two separate drives (a CD-ROM and a CD-RW), or is it one drive appearing as two devices under Windows? If it's the latter, I don't think I've ever seen that before. If the former, then it may be that Linux will map both drives to SCSI devices, so the CD-ROM drive may come first, making the CD-RW drive dev=0,1,0. Otherwise, the CD-RW would almost certainly be dev=0,0,0. As Kevin suggested, "cdrecord -scanbus" will sort things out, once you've got the ide-scsi driver loaded.
You'll need to change the /dev/hdc device name in /etc/fstab to /dev/scd0 (or maybe /dev/scd1 for 0,1,0), because the old IDE devices can't be accessed directly once mapped to SCSI. Similarly, you'll likely also want to change the /dev/cdrom symlink.
I'm trying to copy some old tape songs into a CD. The program rec and the Gnome mixer are excellent for getting the songs into .wav files. All I need to do now is get cdrecord going. cdrecord -v speed=4 -pad -audio dev=?,?,? Any ideas about dev ? Oh, you'll notice I'm using my new, id. For some reason, somebody didn't like 'author'
Anyone know of any decent, free, click and pop filters for .wav files? (Linux or Win98 OK.)
Yah, I get the boring: Cdrecord 1.10 (i686-pc-linux-gnu) Copyright (C) 1995-2001 Jörg Schilling Linux sg driver version: 3.1.19 Using libscg version 'schily-0.5' scsibus0: 0,0,0 0) 'QPS ' 'CD-R PX-W8432T' '1.03' Removable CD-ROM 0,1,0 1) * 0,2,0 2) * 0,3,0 3) * 0,4,0 4) * 0,5,0 5) * 0,6,0 6) * 0,7,0 7) *
In case anyone wants to compare.
millward wrote:
Thanks for the information on SCSI emulation in Red Hat. It's good to know I don't have to do anything about that. I've read the CD-writter Howto and the man cdrecord, but I can't figure out what to enter for the 'dev' argument for cdrecord. The example shows dev=0,6,0 But that's for a SCSI device and mine is ATAPI. My burner is /dev/hdc in fstab In the BIOS its a secondary master. In windoze its E for the cdrom part and F for the burner I'm trying to copy some old tape songs into a CD. The program rec and the Gnome mixer are excellent for getting the songs into .wav files. All I need to do now is get cdrecord going. cdrecord -v speed=4 -pad -audio dev=?,?,? Any ideas about dev ? Oh, you'll notice I'm using my new, id. For some reason, somebody didn't like 'author' _______________________________________________ Roundtable mailing list Roundtable@muug.mb.ca http://www.muug.mb.ca/mailman/listinfo/roundtable