# # /etc/modutils/cdrw # # # Original File # -------------- # http://www.Linux-1U.net/CDRW/Modules/Examples/modutils.cdrw.txt # # # 26-Nov-02 amo Date-of-Birth # # # # Where did you connect your drives.. # # an example: # /dev/hdc --> CDROM # /dev/hdd --> CD-RW with ide-scsi # # # Tell the system NOT to use slower cdrw drive as the cdrom # -------------------- options ide-cd ignore=hdd # # # Set up an alias for /dev/scd0 to load sr_mod # --------------------------------------------- alias scd0 sr_mod # # # Now get ide-cd followed by ide-scsi loaded before the SCSI drivers # ------------------------------------------------------------------ pre-install sg modprobe ide-scsi pre-install sr_mod modprobe ide-scsi pre-install ide-scsi modprobe ide-cd # # # End of modutils.cdrw.txt file