Linux Newbie help
 help / color / mirror / Atom feed
* Re: Polaroid BurnMAX24 CD-RW
@ 2002-05-18  5:43 Ray Olszewski
  2002-05-19 14:48 ` Ken Moffat
  0 siblings, 1 reply; 10+ messages in thread
From: Ray Olszewski @ 2002-05-18  5:43 UTC (permalink / raw)
  To: Mark Johnson; +Cc: linux-newbie

I added the list back in. My substantive reply is below.

At 07:50 PM 5/17/02 -0700, Mark Johnson wrote:
[...]
>This I do need to know how to do.  I tried to run cerecord and was 
>overwhelmed by all the options, so I tried the K menu in KDE and for 2 
>programs: KOnCD and X-CD-Roast and both of them say I my drives aren't 
>SCSI and won't recognize them.  If you can tell me how or point me to a 
>HowTo, I would appreciate it.
>
>Thanks -=Mark=-


There is a CD Writing HowTo that covers the basics of how to do this; find
it at (for example) www.linuxdoc.org . It is slightly out of date, but you
should be able to get what you actually need to do worked out without too
much difficulty from the information it presents.

Here's what I did ... influenced a bit by my use of Debian, so the details
for your distro may vary a bit.

1. Compile the needed kernel options as modules. My notes say I did it this
way (on kernel 2.4.17, using "make menuconfig") --

        in IDE/ATA/ATAPI BLock Devices, I enabled a module
for "SCSI emulation support"
        in SCSI, I enabled "SCSI disk support", "SCSI CD_ROM
                support", and "SCSI generic support"
                all enabled as modules

2. Since I had already compiled my own kernel, I could compile these modules
incrementally, with "make modules". Then I moved the newly-compiled modules
into the kernel modules area (I did this with "make modules_install").

3. I then added (in /etc/modules) the modules I neded to modprobe in at
boot/init. That list is:

# the stuff to enable ide-scsi emulation for the CD-ROM
scsi_mod
sr_mod scd0
sg
ide-scsi


4. Last, I modified lilo.conf so that the IDE CD-R/W drive would NOT be
initialized as an IDE devide at boot (so the ide-scsi module can grab it
instead). I made this change (the last line shown) to lilo.conf:

image=/boot/vmlinuz-2.4.17
        label=Linux
        read-only
        append="hdd=ide-scsi"


The hdd part is because I connected the drive as IDE secondary/slave. You'll
need to modify that for wherever you have yours connected (hdb, hdc, or hdd).

I then re-ran LILO, successfully.

5. With all the changes made, I rebooted. Everything worked for me, and I
now had the drive installed as device /dev/scd0 . The easy test of this was
to use it as a CD_ROM reader, putting in an iso9660 disk and mounting it
successfully.

6. cdrecord is a bit weirder. It doesn't use the /dev/scd0 pseudofile to
access the drive; it uses its (pseudo) SCSI parameters instead. The easy way
to find them out is to run 

        cdrecord --scanbus

to get it to find the drive. Once it does, use the reported values to access
the drive. For example, after I've created a filesystem image with mkisofs,
I use this command --

        cdrecord dev=0,0,0 speed=24 filename.iso

where the dev= part is what you get from the prior command, speed= is the
write speed of your drive, and filename.iso is the image you want to put on
the CD. This is for a write-once disk; there are other options if you want
to do multisession.

I've only done this a little bit myself, so there are, I'm sure, many other
oprtions, once you get the basics working. 

Hope this helps. Good luck.


--
------------------------------------"Never tell me the odds!"---
Ray Olszewski                                        -- Han Solo
Palo Alto, CA           	 	         ray@comarre.com        
----------------------------------------------------------------

-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.linux-learn.org/faqs

^ permalink raw reply	[flat|nested] 10+ messages in thread
* Re: Polaroid BurnMAX24 CD-RW
@ 2002-05-17  3:25 Ray Olszewski
  0 siblings, 0 replies; 10+ messages in thread
From: Ray Olszewski @ 2002-05-17  3:25 UTC (permalink / raw)
  To: Mark Johnson, linux-newbie

At 08:02 PM 5/16/02 -0700, Mark Johnson wrote:
>
>I am once again in need of some help.  I just got a new CD-RW . It is a 
>Polaroid BurnMAX24.  I was wondoering if anyonr knew if there are 
>drivers available for this or if there is a generic driver used?  I 
>tried rpmfind.org but I couldn't connect for some odd reason, and I 
>thought there was a linuxdrivers.org or something but couldn't seem to 
>find it either.  The docs for the drive say it is a CD-WRITER IDE2410. 
> I tried Polaroid but they don't even mention a cd of any type, and the 
>search program gave me nothing to.


I don't know the specific drive you mention, but typically IDE CD-R/W drives
are standard. They are a bit tricky to use, however, in that Linux
CD-writing software only knows about SCSI drives ... so you have to use
SCSI-IDE emulation in the kernel to access the device. This basically
requires loading a bunch of modules, plus passing a parameter to LILO that
causes the appropriate IDE device NOT to be mounted as an IDE device (so the
module can pick it up pater). Then software ike cdrecord can access the
drive via its pseudo-SCSI parameters, and more standard software can access
it via (usually) /dev/scd0 .

If you don't already know about doing this part, post again and I'll give
more details (or track down the URL of the pretty good HowTo I've seen) then
I ccan dash off from memory. If you alrady know this part and are asking
ONLY about the particulars of this drive ... then I apologize for wasting
your time.


--
------------------------------------"Never tell me the odds!"---
Ray Olszewski                                        -- Han Solo
Palo Alto, CA           	 	         ray@comarre.com        
----------------------------------------------------------------

-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.linux-learn.org/faqs

^ permalink raw reply	[flat|nested] 10+ messages in thread
* Polaroid BurnMAX24 CD-RW
@ 2002-05-17  3:02 Mark Johnson
  0 siblings, 0 replies; 10+ messages in thread
From: Mark Johnson @ 2002-05-17  3:02 UTC (permalink / raw)
  To: linux-newbie


I am once again in need of some help.  I just got a new CD-RW . It is a 
Polaroid BurnMAX24.  I was wondoering if anyonr knew if there are 
drivers available for this or if there is a generic driver used?  I 
tried rpmfind.org but I couldn't connect for some odd reason, and I 
thought there was a linuxdrivers.org or something but couldn't seem to 
find it either.  The docs for the drive say it is a CD-WRITER IDE2410. 
 I tried Polaroid but they don't even mention a cd of any type, and the 
search program gave me nothing to.

-=Mark=-

-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.linux-learn.org/faqs

^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2002-05-22 16:33 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <3CE94665.8090104@adelphia.net>
2002-05-21 19:25 ` Polaroid BurnMAX24 CD-RW Ken Moffat
2002-05-21 20:48   ` Richard Adams
     [not found] ` <Pine.LNX.4.21.0205212006510.24300-100000@pppg_penguin.linu x.bogus>
2002-05-21 19:59   ` Ray Olszewski
     [not found]     ` <3CEAD413.3070104@adelphia.net>
2002-05-22  0:13       ` Ray Olszewski
2002-05-22  6:35         ` Mark Johnson
2002-05-22 16:33     ` Ken Moffat
2002-05-18  5:43 Ray Olszewski
2002-05-19 14:48 ` Ken Moffat
  -- strict thread matches above, loose matches on Subject: below --
2002-05-17  3:25 Ray Olszewski
2002-05-17  3:02 Mark Johnson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox