Ik wil graag cd's branden onder woody maar dit lukt niet. heb de howto gelezen op www.linux.org
en daar staat dat ik dit script moet runnen:
Dat geeft de volgende output:
ik heb de scsi generic driver echter in de kernel mee gecompileerd iemand een suggestie dus die modules heb ik helemaal niet nodig maar als ik cdrecord run werkt het niet.
bij voorbaad dank?
en daar staat dat ik dit script moet runnen:
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| #!/bin/bash
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
** Joe's Own Editor v2.8 ** Copyright (C) |
Dat geeft de volgende output:
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| ultimate@debian:/root$ su Password: debian:~# ./test.sh You must be root to execute the commands. cdrecord: No such file or directory. Cannot open SCSI driver. cdrecord: For possible targets try 'cdrecord -scanbus'. Make sure you are root. Ensure the module sg is loaded automatically next time. insmod: sg: no module by that name found Ensure the module sr_mod is loaded automatically next time. insmod: sr_mod: no module by that name found The following is only needed for IDE/ATAPI CD-writers. Cdrecord 1.10 (i686-pc-linux-gnu) Copyright (C) 1995-2001 Jörg Schilling cdrecord: No such file or directory. Cannot open SCSI driver. cdrecord: For possible targets try 'cdrecord -scanbus'. Make sure you are root. |
ik heb de scsi generic driver echter in de kernel mee gecompileerd iemand een suggestie dus die modules heb ik helemaal niet nodig maar als ik cdrecord run werkt het niet.
bij voorbaad dank?