John Blackmore wrote:
> I'm trying to get my IDE CD burner working using cdrecord, and as usual, not
> as simple as the documentation suggests. The first step is to type
> 'cdrecord -scanbus' and figure out what the device, LUN, etc. is, but when I
> do it it just says
> "No such file or directory. Cannot open SCSI driver".
that means you've not correctly setup the kernel for burning or at least thats
how its been for me when i got that message....
just make sure you've got the scsi emulation etc. settings to Y as the howto
suggests..
ALSO:
you must insert the following into /etc/profile ( starting with test and
ending with cdrecord -scanbus )
that should do it ......let us know if that works for you
lee
-------------------------------------
test `whoami` = 'root' || echo "You must be root to execute the commands."
cdrecord -scanbus > /dev/null
if ! (pidof kerneld || test -f "/proc/sys/kernel/modprobe"); then
echo "Neither kerneld nor kmod are running to automatically load
modules".
fi
report_no_autoload() {
echo "Ensure the module $1 is loaded automatically next time."
}
if test ! -f "/proc/scsi/scsi"; then
report_no_autoload scsi_mod && insmod scsi_mod
fi
if ! grep "^........ sg_" /proc/ksyms > /dev/null; then
report_no_autoload sg && insmod sg
fi
if ! grep "^........ sr_" /proc/ksyms > /dev/null; then
report_no_autoload sr_mod && insmod sr_mod
fi
if ! grep "^........ loop_" /proc/ksyms > /dev/null; then
report_no_autoload loop && insmod loop
fi
if ! grep iso9660 /proc/filesystems > /dev/null; then
report_no_autoload iso9660 && insmod iso9660
fi
echo "The following is only needed for IDE/ATAPI CD-writers."
if ! grep ide-scsi /proc/ide/drivers > /dev/null; then
report_no_autoload ide-scsi && insmod ide-scsi
fi
cdrecord -scanbus
_______________________________________________
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list