I have written a CD using DirectCD on WinXP. I am trying to read it on Linux. But I can got to the drive but cannot see the contents. How do I install the correct UDF reader on Linux?
You need to have UDF filesystem support compiled into your kernel, or available as a module. Then mount it like a normal CD, except for the filesystem type:
Code:
mount /dev/cdrom /mnt/cdrom -t udf
Specific /dev/ and /mnt/ stuff may differ on your system. The key though is specifying the -<t>ype of filesystem. --
JR
Just depends on whichever physical drive you put the UDF disc in. I have the same kind of setup myself (named /mnt/dvd and /mnt/cdrw). Put the disc in the DVD drive and do a:
mount /dev/hdc1 /mnt/cdrom -t udf
(this assumes your DVD drive is Master on Secondary IDE cable). --
JR
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.