Um eine DVD sauber installieren zu können, muß ich mein DVD mit „udf“ neu verbinden. Aus der Installationsanleitung bekomme ich dazu folgenden Hinweis:
sudo umount /dev/dvd && sudo mkdir -p /mnt/dvd && sudo mount -t udf /dev/dvd /mnt/dvd
Folgendes passiert …
mount: block device /dev/dvd is write-protected, mounting read-only
mount: wrong fs type, bad option, bad superblock on /dev/dvd,
missing codepage or other error
In some cases useful info is found in syslog - try
dmesg | tail or so
Was ist ein fs Type?
Nach Aufruf von dmesg | tail erscheint…
[17182615.016000] ISOFS: changing to secondary root
[17182699.512000] ISO 9660 Extensions: Microsoft Joliet Level 1
[17182699.512000] ISOFS: changing to secondary root
[17182861.144000] ISO 9660 Extensions: Microsoft Joliet Level 1
[17182861.148000] ISOFS: changing to secondary root
[17183274.312000] ISO 9660 Extensions: Microsoft Joliet Level 1
[17183274.312000] ISOFS: changing to secondary root
[17183358.000000] ISO 9660 Extensions: Microsoft Joliet Level 1
[17183358.000000] ISOFS: changing to secondary root
[17183525.120000] UDF-fs: No VRS found
Irgendeine VRS nicht gefunden. Was heißt das? Wie kann ich dies korrigieren? Was ist überhaupt „UDF“? Und wozu benötigt man den mkdir Befehl in der oberen Befehlseingabezeile?
Danke