[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

"cd-writing howto": step by step



Ciao, ho alcuni punti che non mi sono chiari nel seguire passo passo
le istruzioni
di questo howto consigliatomi da legolas: ne approfitto per usare
questo thread per problemi
che mi si presenteranno nel seguirlo, nella speranza che qualcuno di
volta in volta mi possa aiutare.

Il primo problema è questo: mi viene detto di eseguire in console il
seguente al fine
caricare tutti i moduli necessari:
-------------
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
-------------
Tutti gli insmod falliscono... se però li carico con modprobe vanno!
L'unico che anche con modprobe non viene caricato è iso9660.
Infatti se uso il completamento automatico (tab) della bash tutti
i moduli vengono rilevati eccetto proprio iso9660.
Come faccio? Devo modificare la config del kernel in modo che tale
modulo venga compilato e ricompilare?

       Grazie mille a tutti

                           Paolo

PS: all'inizio avevo chiesto aiuto rigurado al lett/mast dvd ma legolas
mi aveva consigliato questo howto tanto per cominciare. Questo howto
riguarda solo la masterizzazione di cdrom. Volevo sapere quanta rogna 
aggiuntiva dovrò affrontare per masterizzare i dvd? gr ancora!



Reply to: