如何打开 UDF 卷

M N*_*M N 10 dvd mount udf

我有一张可以在 Windows 中打开的 DVD,但在我的 Ubuntu 12.04 安装中我不能再打开了。我收到此错误:

Unable to mount UDF Volume

Error mounting: mount: block device /dev/sr0 is write-protected, mounting read-only
mount: wrong fs type, bad option, bad superblock on /dev/sr0,
       missing codepage or helper program, or other error
       In some cases useful info is found in syslog - try
       dmesg | tail  or so
Run Code Online (Sandbox Code Playgroud)

我应该怎么做才能打开它?我需要安装什么吗?

kar*_*rel 12

打开终端并尝试使用以下命令安装 DVD:

sudo mount -t udf /dev/sr0 /cdrom
Run Code Online (Sandbox Code Playgroud)

-t 后面的参数用于指示文件系统类型,在本例中为 udf。UDF 或通用磁盘格式是一种独立于操作系统的文件系统,通常用于 DVD 和其他数字媒体。1

1 https://en.wikipedia.org/wiki/UDF