: Anyone know where to find drivers for this CD-ROM. Ihaven't seen it listed in
: any incompatibility list, yet I haven't been able to find drivers for it.
:
You don't need drivers for it. Use 'eject -c x' where 0 <= x <= 3 to switch
discs; you must unmount the CD-ROM first, though. Also, you must unmount the
disc to eject it from the drive.
I'm running an NEC 4x4 on my P166 - it works fine.
Here's a Tcl/Tk script that comes in handy... my drive is /dev/hdb.
------------------------- cut here -----------------------------
#! /usr/bin/wish -f
# CD Changer Remote Control
# Russ Price, 8-10-97
for {set i 0} {$i < 4} {incr i} {
button .t$i -text "Disc $i" -command "
exec umount /dev/hdb
exec eject -c $i
exec mount /dev/hdb
"
pack .t$i -side left
------------------------- cut here -----------------------------Quote:}
--
Russ Price "Bus error - passengers dumped"
(drop the X to reach me...)