How to mount .MDS file?

I've tried using commands but all it gives me is:

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

it works with ISO file but not MDS or MDF? help

1

2 Answers

It SHOULD be:

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

If that does not work you can also install iat and convert it to ISO

sudo apt install iat

From 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.

Or you can also install Furius ISO Mount with ...

sudo apt install furiusisomount

Furius ISO Mount is a simple application for mounting ISO, IMG, BIN, MDF and NG image files even without burning them to disk.

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

Run it (GUI - appears on panel), click on "device" then mount MDS file Profit!

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like