LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Laptop and Netbook
User Name
Password
Linux - Laptop and Netbook Having a problem installing or configuring Linux on your laptop? Need help running Linux on your netbook? This forum is for you. This forum is for any topics relating to Linux and either traditional laptops or netbooks (such as the Asus EEE PC, Everex CloudBook or MSI Wind).

Notices


Reply
  Search this Thread
Old 03-16-2007, 08:56 AM   #1
HunterLoftis
LQ Newbie
 
Registered: Mar 2007
Posts: 28

Rep: Reputation: 15
Question Can't mount DVD-R (with disk/data) on HP Laptop


Hi! This is my first post. A couple of hours ago I backed up all my files onto 6 DVD-Rs and then erased Windows Vista Premium (which came with my HP dv6265us) and installed Ubuntu 6.10.

I have never used Linux before and have already run into a few problems because I am the sort of person who will not be satisfied if I can't make Linux do a single thing that Windows can do. I figured out how to get the display resolution right by installing 915resolution (but I would *really* appreciate somebody explaining to me why that fixed the problem / what 915 resolution is, what it did, etc - is it a driver? did it just change a config file somewhere?). I then edited the xorg.conf file to get my wacom tablet to work and in the process stuffed up X11 and had to figure out how to use the command-line to restore it from a backup. The Wacom tablet works (except the scroll wheel is inverted, still working on that) and now I'm trying to figure out how to load all of my files from the DVD-Rs onto which they are saved.

When I insert the DVD into the drive and then try to access it (Places -> Computer -> CD-RW/DVD+-R Drive) the drive initializes, I hear it spin, and then I get:

"Unable to mount the selected volume. The volume is probably in a format that cannot be mounted."
"mount: block device /dev/hda is write-protected, mounting read-only

mount: wrong fs type, bad option, bad superblock on /dev/hda,

missing codepage or other error

in some cases useful info is found in syslog - try

dmesg | tail or so

"

I know the DVDs work because I tested them all with Windows before formatting.

Thanks in advance for your help with this, I really think this would be an impossible task if it weren't for all the experienced Linux users out there willing to help.

Hunter
 
Old 03-16-2007, 10:48 AM   #2
GrapefruiTgirl
LQ Guru
 
Registered: Dec 2006
Location: underground
Distribution: Slackware64
Posts: 7,594

Rep: Reputation: 556Reputation: 556Reputation: 556Reputation: 556Reputation: 556Reputation: 556
Code:
/dev/hdb	/media/cdrom		udf,iso9660	defaults,noauto,user	0 0
/dev/hdd	/media/dvdrom		udf,iso9660	defaults,noauto,user,ro	0 0
/dev/fd0	/media/floppy		auto		defaults,noauto,user	0 0
Hello Hunter Welcome to Linux. Nice move on the MS removal
OK, the stuff I pasted above is from the file located at /etc/fstab.
That file is what tells the Linux system how to mount various media in the drives.
You see that I have a DVD drvice called /dev/hdd, which mounts on the folder /media/dvdrom.
DVD's and CD's typically have one of 2 filetypes, either UDF or iso9660, so that's what I have specified there. The system first tries to mount a disk as udf, and if that fails, it will try to mount it as iso9660.
In most of my experience, disks made with Windows will be in UDF format.
The entried following the filetype are specific instructions for how to mount the disk, once the filetype has been determined.
In a console window, use the 'man' command to read the manual on the mount command, as well as the fstab file by typing:
man mount
or
man fstab
And you will see all the possibilities for how to mount stuff.
By default, discs mounted under Linux are mounted RO (read-only) because unlike Windows, for example, a CD or DVD cannot be mounted in a writeable fashion unless you are using a disc-burning application like k3b or similar.
If you cannot mount discs as a user, su to root first before mounting, or use the format 'sudo mount /dev/hdd ...etc.....", but the reason I have the 'user' flag on my CD-drives in fstab, is so regular users can mount discs.
NOTE: these instructions are typically carried out in a console, on my system (Slackware) however, the etc/fstab file takes effect system-wide, and any saved changes you make to it should take effect immediately.
Good luck, I hope this helps you out
Sasha
 
Old 03-16-2007, 11:15 AM   #3
HunterLoftis
LQ Newbie
 
Registered: Mar 2007
Posts: 28

Original Poster
Rep: Reputation: 15
Hi Sasha! Thanks a lot for your help. I followed your instructions (I've tried something similar earlier) and I got this again:

"Unable to mount the selected volume"
"mount: special device /dev/hdd does not exist"

(I get that when I go to Places -> Computer -> DVD-ROM)

Any ideas?
 
Old 03-16-2007, 11:49 AM   #4
GrapefruiTgirl
LQ Guru
 
Registered: Dec 2006
Location: underground
Distribution: Slackware64
Posts: 7,594

Rep: Reputation: 556Reputation: 556Reputation: 556Reputation: 556Reputation: 556Reputation: 556
Hmmm.. Ok, MY dvd device is named /dev/hdd, but is yours?
As per your first post, you are trying to mount /dev/hda, not /dev/hdd.
Check for typos
 
Old 03-16-2007, 11:56 AM   #5
HunterLoftis
LQ Newbie
 
Registered: Mar 2007
Posts: 28

Original Poster
Rep: Reputation: 15
How do you find out what your DVD device is named?
 
Old 03-16-2007, 12:00 PM   #6
GrapefruiTgirl
LQ Guru
 
Registered: Dec 2006
Location: underground
Distribution: Slackware64
Posts: 7,594

Rep: Reputation: 556Reputation: 556Reputation: 556Reputation: 556Reputation: 556Reputation: 556
And..
P.S - While I'm not certain, the 915resolution *might* be a kernel module required for your onboard chipset video hardware, depending on what processor and chipset your 'puter has in it..
type lsmod in a console, and if you see the 915 device listed there, then that means it is a kernel module.
If I am on the right track here, the 915 is a newer version of an older module called 800-something, which will be made obsolete by the 915 module eventually.
How did you 'install' the 915 device? By what means?
 
Old 03-16-2007, 12:02 PM   #7
HunterLoftis
LQ Newbie
 
Registered: Mar 2007
Posts: 28

Original Poster
Rep: Reputation: 15
I just used Ubuntu's package system to "Apply" it
 
Old 03-16-2007, 12:03 PM   #8
GrapefruiTgirl
LQ Guru
 
Registered: Dec 2006
Location: underground
Distribution: Slackware64
Posts: 7,594

Rep: Reputation: 556Reputation: 556Reputation: 556Reputation: 556Reputation: 556Reputation: 556
Well, you could look around in the /dev folder, and see what hd? devices are there; there shouldn't be very many of them.
I have 4 devices in mine, 2 hard disks and 2 CD-drives, and all are named hda, hdb, hdc, and hdd, depending on what position on the IDE bus they are plugged into.You could also (this is easier) read the file /var/log/dmesg because this file is generated during each boot, and will identify all devices the system detected during boot.
it will have a line identifying the device name, IDE bus number, and device type (CD-ROM, DVD-R, Hard disk, etc)
 
Old 03-16-2007, 12:04 PM   #9
GrapefruiTgirl
LQ Guru
 
Registered: Dec 2006
Location: underground
Distribution: Slackware64
Posts: 7,594

Rep: Reputation: 556Reputation: 556Reputation: 556Reputation: 556Reputation: 556Reputation: 556
OK, LOL, I'm not sure what Ubuntu's 'apply' button does, but.. lsmod will tell you if it is a loaded kernel module.
 
Old 03-16-2007, 12:08 PM   #10
HunterLoftis
LQ Newbie
 
Registered: Mar 2007
Posts: 28

Original Poster
Rep: Reputation: 15
Yes it does seem to be a loaded kernel module (called i915) and I checked - my disk is called "hda" - which is weird, because I figured that would be the main hard disk. Anyway, so it's hda but when I try to mount it now it says "Opening CD-RW/DVD-RW Drive..." (and then the drive spins) and then "Unable to mount the selected volume. The volume is probably in a format that cannot be mounted."

Is there a way for me to download other formats? Maybe Windows Vista burns data DVDs in newer formats or something, although that would be really damn annoying
 
Old 03-16-2007, 12:16 PM   #11
GrapefruiTgirl
LQ Guru
 
Registered: Dec 2006
Location: underground
Distribution: Slackware64
Posts: 7,594

Rep: Reputation: 556Reputation: 556Reputation: 556Reputation: 556Reputation: 556Reputation: 556
Well, there really (as far as I know) is no way of 'downloading other formats' however, the linux kernel is equipped to deal with MANY filesystem types (literally dozens).
Now, whether the support for all a persons needed filesystems is compiled and ready to go by default is another question.
It is possible that the disk is in a MSDOS, VFAT (fat-16 or fat-32) or NTFS format. You could also specify the filetype as 'AUTO' in the fstab file, and see what happens there; that will make the kernel try various filesystems for which it has the ability to read, until it finds one that is suitable.
It would be ideal to know what the filesystem is for sure, and LOL It sure would be annoying if they used some screwed up weirdo filesystem. I doubt it though; chances are you just havent stumbled onto the correct filesystem yet.
If it comes down to it (which I dont suspect yet) we can look into your kernel's modules and see what filesystem support it has.
Also, again check the 'man mount' page for other options which may help.
Also, in a terminal, AFTER attempting to mount the disc, type 'dmesg | tail' and this will give you the last output from the kernel, which can give hints as to what exactly the problem is with the disc.
 
Old 03-16-2007, 12:34 PM   #12
GrapefruiTgirl
LQ Guru
 
Registered: Dec 2006
Location: underground
Distribution: Slackware64
Posts: 7,594

Rep: Reputation: 556Reputation: 556Reputation: 556Reputation: 556Reputation: 556Reputation: 556
Here's another possibility, which I had to use in order to use some movie DVD's in my DVD player.
I had to download a DVD-decryption library called 'libdvdcss' in order to decode some types of movies.
You *may* have to look into that, but I doubt it, as this is a computer disc we're talking about here, rather than a copy-protected movie.
Typically, ubuntu has all the necessary stuff built in to make transitioning from Windows relatively easy. However, I'd be happy to continue helping you get this working one way or another if it is still failing.
Mircosoft also uses several 'filesystem extensions' with its CD/DVD formats, such as the Joliet extension, and also one called 'Rock-Ridge' which again are usually enabled by default, but if necessary, we can check into the built-in support for filesystems if need be.
 
Old 03-16-2007, 12:44 PM   #13
HunterLoftis
LQ Newbie
 
Registered: Mar 2007
Posts: 28

Original Poster
Rep: Reputation: 15
I'm trying your suggestions now. Just wanted to say thanks so much for helping me!
 
Old 03-16-2007, 12:50 PM   #14
HunterLoftis
LQ Newbie
 
Registered: Mar 2007
Posts: 28

Original Poster
Rep: Reputation: 15
I tried "auto" setting and then I also downloaded that dvd decoder and neither of them seem to do the trick...

[17183242.188000] ide: failed opcode was: unknown
[17183242.188000] end_request: I/O error, dev hda, sector 6971008
[17183242.188000] Buffer I/O error on device hda, logical block 871376
[17183247.640000] UDF-fs: No fileset found
[17183432.772000] hda: media error (bad sector): status=0x51 { DriveReady SeekComplete Error }
[17183432.772000] hda: media error (bad sector): error=0x30 { LastFailedSense=0x03 }
[17183432.772000] ide: failed opcode was: unknown
[17183432.772000] end_request: I/O error, dev hda, sector 6971008
[17183432.772000] Buffer I/O error on device hda, logical block 871376
[17183438.168000] UDF-fs: No fileset found
 
Old 03-16-2007, 12:57 PM   #15
HunterLoftis
LQ Newbie
 
Registered: Mar 2007
Posts: 28

Original Poster
Rep: Reputation: 15
I think this might be the root of my problems:

http://windowshelp.microsoft.com/Win...88f5c1033.mspx
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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
Can't Mount Nero Multisession Data DVD natewlew Linux - Software 33 04-18-2006 06:36 PM
DVD writes bad data to disk when growisofs is executed from script akiladila Linux - Hardware 4 04-17-2006 05:30 PM
Cannot Copy files from DVD data disk bear2x Linux - Hardware 4 06-23-2005 10:03 AM
Mount External CD-R/DVD on Laptop USB or PCMCIA?? ArchiMark Debian 2 05-21-2005 12:26 PM
Can not access files on DVD+RW data disk chrisq0 Linux - Software 2 03-01-2005 02:08 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Laptop and Netbook

All times are GMT -5. The time now is 07:35 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