I have an ISO of an audio CD that was created by someone using OS X. I would like to use this ISO in Ubuntu -- ultimately in order to extract the tracks to sound files.
When I attempt to mount the ISO, I get the following message:
>sudo mount -o loop ~/CD.iso /home/user/cdmount
mount: you must specify the filesystem type
How should I do this?
sudo mount -t iso9660 -o ...
orsudo mount -t udf -o ...
? ISO9660 and UDF are the most common filesystem types for CD/DVD images. – muru Jan 21 '16 at 17:15iso9660
orudf
, it presents me with a "wrong fs type" message. – d3pd Jan 21 '16 at 17:19-t auto
, but audio CDs normally do not have filesystems... – fkraiem Jan 21 '16 at 17:21file -k ~/CD.iso
. – muru Jan 21 '16 at 17:22sudo diskutil unmount /dev/disk2; dd if=/dev/disk2 of=~/CD.iso bs=2048 conv=sync,notrunc
. – d3pd Jan 21 '16 at 17:25file
say about the image. Also try7z t <filename>
. – LiveWireBT Jan 23 '16 at 14:55