http://forums.gentoo.org/viewtopic.php?t=71952
you don't need the scsi-modules to write a cd if you have an atapi cd writer then do the following
cdrecord dev=ATAPI:0,1,0 -checkdrive
the 0,1,0 can be something else according to your settings,
i get the following if i do this
Cdrecord 2.01a16 (i686-pc-linux-gnu) Copyright (C) 1995-2003 J\u9c0eg Schilling scsidev: 'ATAPI:0,1,0' devname: 'ATAPI' scsibus: 0 target: 1 lun: 0 Warning: Using ATA Packet interface. Warning: The related libscg interface code is in pre alpha. Warning: There may be fatal problems. Using libscg version 'schily-0.7' Device type : Removable CD-ROM Version : 0 Response Format: 1 Vendor_info : 'SAMSUNG ' Identifikation : 'CD-R/RW SW-240B ' Revision : 'R403' Device seems to be: Generic mmc CD-RW. Using generic SCSI-3/mmc CD-R/CD-RW driver (mmc_cdr). Driver flags : MMC-2 SWABAUDIO BURNFREE FORCESPEED Supported modes: TAO PACKET SAO SAO/R96P SAO/R96R RAW/R96R
then i start
gcombust
and the go to Burn and change the following settings below
Device: ATAPI:0,1,0 Driver: mmc_cdr
you can know what drive driver to use when u do the cdrecord stuff
Using generic SCSI-3/mmc CD-R/CD-RW driver (mmc_cdr).
Last edited by PoLiPiE on Mon Sep 15, 2003
To add a tip for those more console oriented:
I found it useful to make a script that I use for burning iso files created with mkisofs:
#!/bin/bash cdrecord dev=ATAPI:0,0,0 driveropts=burnfree speed=12 -v -data $*
Put this in your path (/usr/local/bin, perhaps) and you can call it, for example, with "burn-image myimage.iso". It saves alot of time for typing all the options, but is completely unneccessary if you are using gcombust as instructed (and encouraged) above.
Chris I
> wait wait, does this mean i could burn CDs without having this scsi > emulation stuff in my kernel? grub also has an option that says > ide-scsi=/dev/hdc or something. my cdr seems to be on ATAPI:0,0,0 > (dev/hdc). would be cool if i could remove all this scsi stuff from the > kernel.
Yes, you need no scsi emulation and no grub modifications anymore. I have both K3b and Xcdroast working. K3b is very nice, but I can't dup cd's with it yet on my laptop since it only has one drive. I have to use Xcdroast for that.
> I was just wondering, a few months back ATAPI burning was still in alpha > status (and was really slow). Has this improved or should i wait a while > longer before i drop all the scsi emulation?
I haven't noticed any problems with speed. However, my laptop has a combo DVD/CDRW drive which is pretty slow to begin with. It's pretty easy to setup SCSI emulation so if that's already working, just go with it. For a new setup, I'd try ATAPI burning first though. I'm a firm believer in, "if it ain't broke, don't fix it."
The reason I started experimenting with ATAPI was that I had a problem with my burner where it would not read audio CDs well through SCSI emulation. By removing SCSI and going to straight ATAPI. it fixed it right up.
I would be interested in some comparisons between burning speed if anyone can supply them.
$ cdrecord dev=ATAPI:0,1,0 -checkdrive Cdrecord-Clone 2.01a34 (i686-pc-linux-gnu) Copyright (C) 1995-2004 Jorg Schilling NOTE: this version of cdrecord is an inofficial (modified) release of cdrecord and thus may have bugs that are not present in the original version. Please send bug reports and support requests to <cdrtools@packages.debian.org>. The original author should not be bothered with problems of this version.
scsidev: 'ATAPI:0,1,0' devname: 'ATAPI' scsibus: 0 target: 1 lun: 0 Warning: Using ATA Packet interface. Warning: The related Linux kernel interface code seems to be unmaintained. Warning: There is absolutely NO DMA, operations thus are slow. cdrecord: ERROR: unknow subsystem (scd0) in (/dev/sr0) [...] cdrecord: ERROR: unknow subsystem (scd13) in (/dev/sr13) cdrecord: No such file or directory. Cannot open SCSI driver. cdrecord: For possible targets try 'cdrecord -scanbus'. cdrecord: For possible transport specifiers try 'cdrecord dev=help'. cdrecord: cdrecord: For more information, install the cdrtools-doc cdrecord: package and read /usr/share/doc/cdrecord/README.ATAPI.setup .
K3b detects my ATAPI DVD/CDRW and writes to it perfectly. No configuration was necessary. I had problems with .8.1, but .9 is running great!
ScubaStreb