Okay, this is going to sound a little ridiculous. I burned a few DVDRW on my mac machine at work. They're data dvds containing .avi files.

I get home only to discover my Vista machine doesn't like the discs. No problem, I boot up my Linux partition only to discover that I can't seem to mount these DVDs under linux either.

I quickly determine that I need to use hmount, instead of mount so I use these commands:

$ sudo hmount /dev/sr0 /mnt
/dev/sr0: contains 1 HFS partition
hmount: /dev/sr0: not a Macintosh HFS volume (Invalid argument)

$ dmesg
[ 7182.485003] hfs: can't find a HFS filesystem on dev sr0.

I know I'm missing something easy here. Can anyone help?

Specs: Linux XXXXXXX 2.6.38-11-generic #48-Ubuntu SMP Fri Jul 29 19:05:14 UTC 2011 i686 i686 i386 GNU/Linux


$ more /etc/fstab
# /etc/fstab: static file system information.
#
# Use 'blkid -o value -s UUID' to print the universally unique identifier
# for a device; this may be used with UUID= as a more robust way to name
# devices that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
proc            /proc           proc    nodev,noexec,nosuid 0       0
# / was on /dev/sda5 during installation
UUID=03296fc9-1d18-4f11-a175-1f4815759f20 /               ext4    errors=remount-ro 0       1
# swap was on /dev/sda6 during installation
UUID=3dc2291f-f9c3-47f9-999b-7cd1a0971ed8 none            swap    sw              0       0

$ more /etc/mtab
/dev/sda5 / ext4 rw,errors=remount-ro,commit=0 0 0
proc /proc proc rw,noexec,nosuid,nodev 0 0
none /sys sysfs rw,noexec,nosuid,nodev 0 0
fusectl /sys/fs/fuse/connections fusectl rw 0 0
none /sys/kernel/debug debugfs rw 0 0
none /sys/kernel/security securityfs rw 0 0
none /dev devtmpfs rw,mode=0755 0 0
none /dev/pts devpts rw,noexec,nosuid,gid=5,mode=0620 0 0
none /dev/shm tmpfs rw,nosuid,nodev 0 0
none /var/run tmpfs rw,nosuid,mode=0755 0 0
none /var/lock tmpfs rw,noexec,nosuid,nodev 0 0
binfmt_misc /proc/sys/fs/binfmt_misc binfmt_misc rw,noexec,nosuid,nodev 0 0
gvfs-fuse-daemon /home/lori/.gvfs fuse.gvfs-fuse-daemon rw,nosuid,nodev,user=lori 0 0
/dev/sdb1 /media/TMOWEB vfat rw,nosuid,nodev,uhelper=udisks,uid=1000,gid=1000,shortname=mixed,dmask=0077,ut
f8=1,showexec,flush 0 0
link|improve this question
How did you determine you need to use hmount instead of mount? Do you get an error with mount? – Paul Oct 19 '11 at 1:52
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.