LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 10-18-2011, 08:50 PM   #1
HeyPretty
LQ Newbie
 
Registered: Oct 2011
Location: Seattle, WA
Distribution: Ubuntu 11.04
Posts: 2

Rep: Reputation: Disabled
Question Mounting a DVD RW in Ubuntu 11.04


Okay, just FYI. I've been googling this issue for two hours now with no success so I'm going to post a question and hope I don't get flamed.

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
 
Old 10-18-2011, 09:20 PM   #2
hen770
Member
 
Registered: Oct 2010
Distribution: Arch
Posts: 136

Rep: Reputation: 7
Is isn't for sure that the filesystems on the disks are HFS, maybe it is UDF although it isn't going right with the windows try you have done

So try with mount -t udf /youDrive /mnt.
Or try to sustitude the udf with hfs.
 
1 members found this post helpful.
Old 10-18-2011, 09:48 PM   #3
HeyPretty
LQ Newbie
 
Registered: Oct 2011
Location: Seattle, WA
Distribution: Ubuntu 11.04
Posts: 2

Original Poster
Rep: Reputation: Disabled
So I did try that earlier, but here's the output:
$ sudo mount -t udf /dev/sr0 /mnt

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

$ dmesg | tail
[12312.328478] UDF-fs: No anchor found
[12312.328489] UDF-fs: No partition found (1)
[12338.027617] UDF-fs: No anchor found
[12338.027624] UDF-fs: No partition found (1)


$ sudo mount -t hfs /dev/sr0 /mnt
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

$ dmesg | tail
[12429.280156] hfs: can't find a HFS filesystem on dev sr0.
 
Old 10-18-2011, 10:50 PM   #4
Cr0wb4r
Member
 
Registered: Feb 2011
Distribution: Debian
Posts: 48

Rep: Reputation: 12
This is kinda a stab in the dark, but you might try using dd to get a copy of the disk in iso format, then use mount to mount it with the loop option.

Though you may have to mount it before you can use dd. I don't know, just a thought.
 
Old 10-19-2011, 05:36 AM   #5
hen770
Member
 
Registered: Oct 2010
Distribution: Arch
Posts: 136

Rep: Reputation: 7
Quote:
Originally Posted by Cr0wb4r View Post
This is kinda a stab in the dark, but you might try using dd to get a copy of the disk in iso format, then use mount to mount it with the loop option.

Though you may have to mount it before you can use dd. I don't know, just a thought.
i think it is a great idea, what you need to do is :

Code:
dd if=/dev/sr0 of=/whatever.iso
then mount that image with the

Code:
mount -o loop
look in the man page of dd in case you need more options.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Mounting CD/DVD on Ubuntu 10.04 This is me Linux - Desktop 7 06-07-2011 08:36 PM
DVD won't mount in Ubuntu 10.04 after mounting iso traigo Linux - Hardware 3 07-15-2010 02:31 PM
Auto-mounting/umounting of an external cd/dvd-rom in Ubuntu command line mode zupidupi Ubuntu 1 10-28-2007 11:49 PM
CD and DVD drives not mounting with ubuntu SeanWcisel Linux - General 1 04-04-2007 03:19 PM
Mounting DVD to a CDR/DVD combo drive f34r7h1s Slackware 38 05-16-2005 07:50 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 11:42 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration