LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - General
User Name
Password
Linux - General This Linux forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place.

Notices


Reply
  Search this Thread
Old 07-15-2004, 04:09 AM   #1
ust
Senior Member
 
Registered: Mar 2003
Location: fasdf
Distribution: Debian / Suse /RHEL
Posts: 1,130

Rep: Reputation: 31
Can't mount cdrom


When I mount the cdrom , it pop the error , please advise what is the reason ? thx.

# mount /dev/cdrom
mount: wrong fs type, bad option, bad superblock on /dev/cdrom,
or too many mounted file systems
(could this be the IDE device where you in fact use
ide-scsi so that sr0 or sda or so is needed?)
 
Old 07-15-2004, 04:14 AM   #2
linmix
Senior Member
 
Registered: Jun 2004
Location: Spain
Distribution: FC5
Posts: 1,993
Blog Entries: 1

Rep: Reputation: 46
Post your fstab and I (we)'ll help you sort it out

(/etc/fstab)
 
Old 07-15-2004, 04:46 AM   #3
ust
Senior Member
 
Registered: Mar 2003
Location: fasdf
Distribution: Debian / Suse /RHEL
Posts: 1,130

Original Poster
Rep: Reputation: 31
LABEL=/ / ext3 defaults 1 1
LABEL=/boot /boot ext3 defaults 1 2
none /dev/pts devpts gid=5,mode=620 0 0
LABEL=/home /home ext3 defaults,usrquota 1 2
none /proc proc defaults 0 0
none /dev/shm tmpfs defaults 0 0
#LABEL=/tmp /tmp ext3 defaults 1 2
LABEL=/usr /usr ext3 defaults 1 2
LABEL=/var /var ext3 defaults 1 2
/dev/sda5 swap swap defaults 0 0
/dev/cdrom /mnt/cdrom iso9660 noauto,owner,kudzu,ro 0 0
/dev/fd0 /mnt/floppy auto noauto,owner,kudzu 0 0
 
Old 07-15-2004, 09:14 AM   #4
Oliv'
Senior Member
 
Registered: Jan 2004
Location: Montpellier (France)
Distribution: Gentoo
Posts: 1,014

Rep: Reputation: 36
Hello,

You used the wrong syntax, that's:
#mount /dev/cdrom /mnt/cdrom
or
#mount /mnt/cdrom

Oliv'
 
Old 07-15-2004, 10:39 PM   #5
ust
Senior Member
 
Registered: Mar 2003
Location: fasdf
Distribution: Debian / Suse /RHEL
Posts: 1,130

Original Poster
Rep: Reputation: 31
thx reply ,

but still not work , could suggest what is wront ? thx

# mount /mnt/cdrom
mount: wrong fs type, bad option, bad superblock on /dev/cdrom,
or too many mounted file systems
(could this be the IDE device where you in fact use
ide-scsi so that sr0 or sda or so is needed?)
 
Old 07-15-2004, 10:59 PM   #6
diablo111
Member
 
Registered: Jul 2004
Location: the other side of morning
Distribution: PCLOS, Fedora Core, Slackware and Mepis.
Posts: 54

Rep: Reputation: 15
Where is your CD-ROM on your IDE devices (primary slave, secondary master or secondary slave)?

Try this:
mkdir /mnt/cd
mount /dev/hdb (for primary slave) /mnt/cd
mount /dev/hdc (for secondary master) /mnt/cd
mount /dev/hdd (for secondary slave) /mnt/cd
 
Old 07-16-2004, 07:26 AM   #7
Oliv'
Senior Member
 
Registered: Jan 2004
Location: Montpellier (France)
Distribution: Gentoo
Posts: 1,014

Rep: Reputation: 36
Diablo111 is right: /dev/cdrom is a symlink to /dev/hdc (or hdd...). So check if the symlink is OK.
To find if your cdrom is on hdc or hdd, you can also have a look at /proc/ide/hdc/media (or /proc/ide/hdd/media)

Oliv'
 
Old 07-18-2004, 09:59 AM   #8
linmix
Senior Member
 
Registered: Jun 2004
Location: Spain
Distribution: FC5
Posts: 1,993
Blog Entries: 1

Rep: Reputation: 46
So I turn my back a second and you guys go (almost) and solve the problem... Keep it going
 
Old 08-04-2004, 03:28 AM   #9
kr!s
LQ Newbie
 
Registered: Nov 2003
Location: Leuven, Belgium
Distribution: Debian
Posts: 10

Rep: Reputation: 0
got the same prob here

Hey guys,

thx already for all the interesting replies to this topic. I've been using all your knowledge, but I still was not able to mount my cdrom.

some info:

system: Debian
kernel: 2.4.26-1-k7
cdrom = hdc (checked using the info in this discussion)


the error message after #mount /mnt/cdrom is slightly different than my fellow here:

mount: wrong fs type, bad option, bad superblock on /dev/hdc,
or too many mounted file systems
(could this be the IDE device where you in fact use
ide-scsi so that sr0 or sda or so is needed?)

the difference is the fact that my system addresses my cdrom as /dev/hdc in the error message. But I think the actual problem will be exactly the same.

Thx for any suggestions!

kr!s
 
Old 08-04-2004, 05:48 AM   #10
michaelk
Moderator
 
Registered: Aug 2002
Posts: 25,721

Rep: Reputation: 5914Reputation: 5914Reputation: 5914Reputation: 5914Reputation: 5914Reputation: 5914Reputation: 5914Reputation: 5914Reputation: 5914Reputation: 5914Reputation: 5914
What boot loader are you using? Is there a hdc=ide-scsi boot parameter?
Do you have a CD burner installed in this PC?
 
Old 08-04-2004, 09:08 AM   #11
cragwolf
Member
 
Registered: Jan 2004
Location: arse-end of the world
Distribution: Zenwalk 2.8
Posts: 73

Rep: Reputation: 15
You might have to change permissions on /dev/hdc. Something like chmod a+rw /dev/hdc might do the trick.
 
Old 08-04-2004, 09:59 AM   #12
charliecron
LQ Newbie
 
Registered: Nov 2003
Posts: 8

Rep: Reputation: 0
I would suggest following the advice of the error message

mount -t iso9660 /dev/sr0(or 1) /mnt/cdrom
 
Old 08-07-2004, 12:09 AM   #13
kr!s
LQ Newbie
 
Registered: Nov 2003
Location: Leuven, Belgium
Distribution: Debian
Posts: 10

Rep: Reputation: 0
THX

thank you all! Problem solved here!

The trick I needed was charliecron's

I just changed /dev/hdc to /dev/sr0 in my fstab file, and now everythin works (of course I had to recreate the icons on my desktop as well).

cheers

kr!s
 
  


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 On
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
CDROM refuses to mount, /dev/cdrom does not exist shane25119 Linux - Hardware 10 08-02-2009 10:43 PM
cant mount cdrom solarcontrol Linux - Hardware 10 01-16-2005 01:34 PM
Cannot Mount Cdrom? bobr Linux - General 1 05-08-2004 03:29 PM
cdrom won't mount stupidclese Linux - Newbie 2 02-03-2004 03:40 AM
Cdrom mount robbinsar Linux - Hardware 12 05-01-2003 01:51 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - General

All times are GMT -5. The time now is 04:15 PM.

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