Sorry for the HTML but I have started to work on updating my web page
and I thought I would stick a few of the thinks I have had to do to
get Linux to work my way on it.  It still needs some work but maybe it
will help you.  Just skip the :

 ln -s /dev/scd0 /dev/cdrom

Since you already have a /dev/cdrom hooked to something different.

PBen

On Thu, 26 Aug 1999 08:54:12 -0500, "Ed Santiago" <[EMAIL PROTECTED]>
wrote:

>Thanks you for the help, I am now able to mount my HP8100 CDR/RW and use it
>as a second CDROM. I very much appreciate your help.
>The HP8100 is an IDE CDR/RW can I write to it or do I need special software?
>Thanks again,
>Ed Santiago
>

Title: IDE-SCSI Emulation

How I Got the IDE-SCSI Emulation to Work

To record on a IDE CD-R under Linux you need to have the IDE emulate a SCSI drive. This is how I got my IDE CD-R to work. Thanks to Deja-news and:

> Subject: CD-Writer mini-Howto [was Re: Configuration Questions]
> From: Jean-Michel Dault <[EMAIL PROTECTED]>
> Date: 1999/06/19
> Newsgroups: alt.os.linux.mandrake

First become root and edit the /etc/lilo.conf and add an append="hdd=ide-scsi" to it. Here is mine:

/etc/lilo.config

boot=/dev/hda6 map=/boot/map install=/boot/boot.b prompt timeout=50 append="hdd=ide-scsi" image=/boot/vmlinuz-2.2.9-19mdksmp label=linux root=/dev/hda11 initrd=/boot/initrd-2.2.9-19mdksmp.img read-only image=/boot/vmlinuz-2.2.9-19mdk label=linux-up root=/dev/hda11 initrd=/boot/initrd-2.2.9-19mdk.img read-only other=/dev/hda1 label=dos table=/dev/hda
Then, add the following lines at the end of your /etc/rc.d/rc.local:

      /sbin/modprobe ide-scsi
      /sbin/modprobe sg
This will configure your CD-RW to emulate a SCSI device.

The last step is to link /dev/cdrom to your CD-RW.


 ln -s /dev/scd0 /dev/cdrom
Reboot!

make sure everything works. As root type


 cdrecord -scanbus
My resutlts were:

Cdrecord release 1.8a22 Copyright (C) 1995-1999 Jörg Schilling
scsibus0:
		  0) *
		  1) *
		  2) *
		  3) *
		  4) 'iomega  ' 'jaz 1GB         ' 'H.72' Removable Disk
		  5) *
		  6) *
		  7) *
scsibus1:
		100) 'HP      ' 'CD-Writer+ 7200 ' '3.01' Removable CD-ROM
		101) *
		102) *
		103) *
		104) *
		105) *
		106) *
		107) *

I had an error message about block-major-11 so I addded this change:

/etc/config.modules

alias scsi_hostadapter0 ide-scsi alias scsi_hostadapter1 advansys alias parport_lowlevel parport_pc pre-install pcmcia_core /etc/rc.d/init.d/pcmcia start alias sound es1370 alias block-major-11 ide-scsi

Note that I have a real SCSI card installed for a Jaz drive and I had to change the alias for the Advansys SCSI card.

Reply via email to