如何挂载.MDS 文件?

如何挂载.MDS 文件?

我尝试使用命令但它只给我以下信息:

mount: [DIRECTORY]: wrong fs type, bad option, bad superblock on 
/dev/loop29, missing codepage or helper program, or other error.

它适用于 ISO 文件,但不适用于 MDS 或 MDF?帮帮我吧

答案1

它应该是:

mkdir -p /mnt/mdf/ 
mount -o loop -t iso9660 {file}.mdf /mnt/mdf

如果这不起作用,你也可以安装 iat 并将其转换为 ISO

sudo apt install iat

man iat

DESCRIPTION
   iat   (Iso9660  Analyzer Tool) is a tool for detecting the structure of
   many types of CD-ROM image file formats, such as BIN,  MDF,  PDI,  CDI,
   NRG, and B5I, and  converting them into ISO-9660.

   If output file name is not defined, then STDOUT will be used instead.

或者您也可以安装Furius ISO 卡口和 ...

sudo apt install furiusisomount

Furius ISO Mount 是一个简单的应用程序,用于安装 ISO、IMG、BIN、MDF 和 NG 映像文件,甚至无需将它们刻录到磁盘。

答案2

sudo add-apt-repository ppa:cdemu/ppa
sudo apt install cdemu-client

运行它(GUI - 出现在面板上),单击“设备”,然后安装 MDS 文件利润!

相关内容