virtanen wrote: > Didn't find any clue yet, what to do. > Still nothing happens. > For most of the time 'xcdroast' command is > answering: > > 'No Generic SCSI-Support has been detected.' > (Anyway there are the modules sg and ide-sci emulation installed.) > > >From dmesg: > ___________ > > hdc: Hewlett-Packard CD-Writer Plus 9100b, ATAPI CDROM drive > hdd: CD-ROM 48X/AKU, ATAPI CDROM drive > > /etc/modules is as follows: > > eepro100 > 3c59x > 3c59x > parport > parport_pc > parport_probe > sg > ide-scsi Make sure you also have module sr_mod (for scsi cdrom) and that scsi support is set with CONGIG_SCSI. Then to make sure the scsi modules are loaded in the right order and see your CD-RW add the following in /etc/modutils/aliases
options ide-cd ignore=hdc # tell the ide-cd module to ignore hdc alias scd0 sr_mod # load sr_mod upon access of scd0 pre-install sg modprobe ide-scsi # load ide-scsi before sg pre-install sr_mod modprobe ide-scsi # load ide-scsi before sr_mod pre-install ide-scsi modprobe ide-cd # load ide-cd before ide-scsi Then run update-modules that's all. Then remove sg and ide-scsi from /etc/modules.Then as root run cdrecord -scanbus to see the CD-RW as a scsi device. -- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~