Welcome to Linux Forums! With a comprehensive Linux Forum, information on various types of Linux software and many Linux Reviews articles, we have all the knowledge you need a click away, or accessible via our knowledgeable members.
Find the answer to your Linux question:
New to Linux Forums? Register here for free!
    Linux Forums > GNU Linux Zone > Linux Newbie > Can't mount Cdrom drive

Forgot Password?
 Linux Newbie   If you're new to the wonderful world of Linux, start here!

Site Navigation
Linux Articles
Linux Forums
Linux Downloads
Linux Hosting
Free Magazines
Job Board
IRC Chat
RSS Feeds


Linux Forum Topics
Linux Forums
Your Distro
Linux Resources
GNU Linux Zone
The Community
Reply
 
Thread Tools Display Modes
Old 01-14-2006   #1 (permalink)
Just Joined!
 
Join Date: Oct 2005
Posts: 38
Can't mount Cdrom drive

Here is the contents of my /etc/fstab

LABEL=/ / ext3 defaults 1 1
LABEL=/boot /boot ext3 defaults 1 2
none /dev/pts devpts gid=5,mode=620 0 0
none /proc proc defaults 0 0
none /dev/shm tmpfs defaults 0 0
/dev/hda3 swap swap defaults 0 0
/dev/cdrom /mnt/cdrom udf,iso9660 noauto,owner,kudzu,ro 0 0
/dev/cdrom1 /mnt/cdrom1 udf,iso9660 noauto,owner,kudzu,ro 0 0

i USED THESE COMMANDS:
mount /dev/cdrom /mnt/cdrom
mount /dev/cdrom1 /mnt/cdrom1

THE ERROR IS BELOW:
/dev/cdrom1: Input/output error
mount: block device /dev/cdrom1 is write-protected, mounting read-only
/dev/cdrom1: Input/output error
mount: you must specify the filesystem type

I read on a site that the command to check if the cdrom has been identified correctly by the kernel was: dmesg | more
when I ran the command I got this:

cdrom: open failed.
cdrom: open failed.
cdrom: open failed.
I/O error: dev 0b:01, sector 0
I/O error: dev 0b:01, sector 64
I/O error: dev 0b:01, sector 0
I/O error: dev 0b:01, sector 64
I/O error: dev 0b:01, sector 0
FAT: unable to read boot sector
I/O error: dev 0b:01, sector 64
isofs_read_super: bread failed, dev=0b:01, iso_blknum=16, block=16
I/O error: dev 0b:01, sector 0
I/O error: dev 0b:01, sector 64
I/O error: dev 0b:01, sector 0
I/O error: dev 0b:01, sector 64
I/O error: dev 0b:01, sector 0
FAT: unable to read boot sector

Im assuming there is some sort of hardware problem with my cdrom drives. I ran the dmesg | more before and the kernel did identify the cdrom.
teknoratti is offline  


Reply With Quote
Old 01-14-2006   #2 (permalink)
Just Joined!
 
Join Date: Oct 2005
Posts: 38
One thing I failed to mention is that when I'm in GNOME the cd plays. I put the cd in the cdrom and it autoruns. It detects the contents of my cd and plays.

I dont get it
teknoratti is offline   Reply With Quote
Old 01-14-2006   #3 (permalink)
Linux User
 
oosterhouse's Avatar
 
Join Date: Jan 2006
Location: Grand Rapids, MI
Posts: 318
Send a message via AIM to oosterhouse Send a message via MSN to oosterhouse Send a message via Yahoo to oosterhouse
Are you doing this as root?
oosterhouse is offline   Reply With Quote
Old 01-14-2006   #4 (permalink)
Linux User
 
St. Joe's Avatar
 
Join Date: Jun 2005
Location: USA
Posts: 271
Quote:
Originally Posted by teknoratti
One thing I failed to mention is that when I'm in GNOME the cd plays. I put the cd in the cdrom and it autoruns. It detects the contents of my cd and plays.

I dont get it
You don't mount an audio cd at the command line.
You media player accesses the files without that step.
__________________
It may be that your sole purpose in life is simply to serve as a warning to others.
St. Joe is offline   Reply With Quote
Old 01-14-2006   #5 (permalink)
Banned
 
CodeRoot's Avatar
 
Join Date: Sep 2005
Posts: 567
Try using either:

Code:
/dev/cdrom /mnt/cdrom iso9660 noauto,owner,kudzu,ro 0 0
/dev/cdrom1 /mnt/cdrom1 iso9660 noauto,owner,kudzu,ro 0 0
or:

Code:
/dev/cdrom /mnt/cdrom udf noauto,owner,kudzu,ro 0 0
/dev/cdrom1 /mnt/cdrom1 udf noauto,owner,kudzu,ro 0 0
(not 'udf,iso9660')

What is 'kudzu'?

Also, it would probably help you to know that:

~ Once defined in /etc/fstab, a device can be mounted simply by referring only to either the device directory or the mount directory (ex. 'mount /dev/cdrom' or 'mount /mnt/cdrom') -- mount reads /etc/fstab and gets the rest...
CodeRoot is offline   Reply With Quote
Old 01-14-2006   #6 (permalink)
Just Joined!
 
marlowe's Avatar
 
Join Date: Jan 2006
Posts: 77
kudzu is an app that comes with rh that detects various devices, if i remember corectly. like mentioned above you can't mount audio cds even if you are root.
marlowe is offline   Reply With Quote
Old 01-14-2006   #7 (permalink)
Just Joined!
 
Join Date: Oct 2005
Posts: 38
Quote:
Originally Posted by marlowe
kudzu is an app that comes with rh that detects various devices, if i remember corectly. like mentioned above you can't mount audio cds even if you are root.
If you can't mount an audio cds, can you mount a cd that has data files on it?

Just answered my own question. I just placed a windows install cd in the cd player just to see if i could get to it using /mnt/cdrom

I was able to get to it. So data cds you can mount from the CLI, audio cds you cant mount from the CLI. Is that right?
teknoratti is offline   Reply With Quote
Old 01-14-2006   #8 (permalink)
Super Moderator
 
ozar's Avatar
 
Join Date: May 2004
Posts: 12,056
Quote:
Originally Posted by teknoratti
Just answered my own question. I just placed a windows install cd in the cd player just to see if i could get to it using /mnt/cdrom

I was able to get to it. So data cds you can mount from the CLI, audio cds you cant mount from the CLI. Is that right?
That's correct.
ozar is offline   Reply With Quote
Old 01-14-2006   #9 (permalink)
Linux Newbie
 
GNOME_n00b's Avatar
 
Join Date: May 2005
Location: UK
Posts: 142
Quote:
Originally Posted by teknoratti
One thing I failed to mention is that when I'm in GNOME the cd plays. I put the cd in the cdrom and it autoruns. It detects the contents of my cd and plays.

I dont get it
thats exactly the same as it is on mine. GNOME works fine for mounting. KDE doesn't. to mount a cdrom, i have to reboot the pc before it works again in KDE. if i eject the cd and put another one in, half the time it mounts and the other half it simply doesn't recognise that there is a cd in the drive....so i have to reboot again . i've tried everything without success.
GNOME_n00b is offline   Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

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 On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off

Free Magazines
Run Your Own Web Server Using Linux & Apache - Free 191 Page Preview
Learn about everything you'll need to build and maintain your Linux servers, and to deploy Web applications to them.
subscribe
Open Source Security Myths Dispelled
Dispel the five major myths surrounding Open Source Security and gain the tools necessary to make a truly informed decision for your IT organization
subscribe
InformationWeek
InformationWeek is the only newsweekly you'll need to stay on top of the latest developments in information technology.
subscribe



All times are GMT. The time now is 05:02 AM.






© 2000 - 2009 - All Rights Reserved - Property of  MAS Media

Content Relevant URLs by vBSEO 3.3.0 RC2