LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware
User Name
Password
Linux - Hardware This forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux?

Notices


Reply
  Search this Thread
Old 07-16-2003, 04:51 PM   #1
elkrammer
LQ Newbie
 
Registered: Jul 2002
Location: Chile
Distribution: Debian Sid
Posts: 29

Rep: Reputation: 15
Question Can't Mount any CD


I'm using Debian Sid. I have a normal ASUS CD READER.
The kernel detects it as follow:
hdc: ASUS CD-S520/A, ATAPI CD/DVD-ROM drive

But when i try to mount ANY CD(i tried a lot of different cds) i get the following:
~# mount -t iso9660 /dev/hdc /cdrom/
mount: block device /dev/hdc is write-protected, mounting read-only
mount: Not a directory

Then i type dmesg to see what's going on and it prints:
hdc: command error: status=0x51 { DriveReady SeekComplete Error }
hdc: command error: error=0x54
end_request: I/O error, dev 16:00 (hdc), sector 116
ISOFS: unable to read i-node block
ISOFS: changing to secondary root
hdc: command error: status=0x51 { DriveReady SeekComplete Error }
hdc: command error: error=0x54
end_request: I/O error, dev 16:00 (hdc), sector 132
ISOFS: unable to read i-node block


I know the CD Reader is good, cause in Windows it works fine and it can boot my linux and windows cd's fine...


THanks in advance,
Mauricio.
 
Old 07-16-2003, 05:14 PM   #2
fancypiper
LQ Guru
 
Registered: Feb 2003
Location: Sparta, NC USA
Distribution: Ubuntu 10.04
Posts: 5,141

Rep: Reputation: 60
The error says your mount point (/cdrom) doesn't exist. Normaly, CDs are mounted at /mnt/cdrom. Look at/post your /etc/fstab file to see where it was set up to be mounted.

If you want to mount somewhere else, create the mount point on your directory first.
 
Old 07-16-2003, 05:20 PM   #3
elkrammer
LQ Newbie
 
Registered: Jul 2002
Location: Chile
Distribution: Debian Sid
Posts: 29

Original Poster
Rep: Reputation: 15
I don't think that's the problem...
Anyway fstab looks as follow:
/dev/hdc /cdrom iso9660 ro,user,noauto 0 0
 
Old 07-16-2003, 05:27 PM   #4
Blinker_Fluid
Member
 
Registered: Jul 2003
Location: Clinging to my guns and religion.
Posts: 683

Rep: Reputation: 63
Probably a long shot but I haven't posted in this forum yet so why not..

create a directory something like /foo (mkdir /foo)
put a CD in and try running this:
mount /dev/hdc /foo

tell us what happens...
 
Old 07-16-2003, 05:29 PM   #5
fancypiper
LQ Guru
 
Registered: Feb 2003
Location: Sparta, NC USA
Distribution: Ubuntu 10.04
Posts: 5,141

Rep: Reputation: 60
You used a trailing slash, so maybe that caused the error.

Try

mount /cdrom
 
Old 07-16-2003, 05:36 PM   #6
elkrammer
LQ Newbie
 
Registered: Jul 2002
Location: Chile
Distribution: Debian Sid
Posts: 29

Original Poster
Rep: Reputation: 15
Blinker_Fluid: I tried that and happened the same:
# mkdir /foo
# mount /dev/hdc /foo
/dev/hdc: Input/output error
mount: you must specify the filesystem type

fancypiper: Same problem:
# mount /cdrom
mount: Not a directory

Of course the directory /cdrom exists..
 
Old 07-16-2003, 05:47 PM   #7
Blinker_Fluid
Member
 
Registered: Jul 2003
Location: Clinging to my guns and religion.
Posts: 683

Rep: Reputation: 63
mount -t iso9660 /dev/hdc /foo

Never seen a CD have that many problems mounting...
 
Old 07-16-2003, 05:49 PM   #8
fancypiper
LQ Guru
 
Registered: Feb 2003
Location: Sparta, NC USA
Distribution: Ubuntu 10.04
Posts: 5,141

Rep: Reputation: 60
You got me, I don't have a DVD drive, so maybe you haven't gotten it configured right yet. Check the Linux DVD HOWTO and make sure it is configured correctly.

What are the hdparm settings? Mine (CD burner):
Code:
root@uilleann  # hdparm /dev/hdd               

/dev/hdd:
 HDIO_GET_MULTCOUNT failed: Input/output error
 I/O support  =  0 (default 16-bit)
 unmaskirq    =  0 (off)
 using_dma    =  0 (off)
 keepsettings =  0 (off)
 HDIO_GET_NOWERR failed: Input/output error
 readonly     =  0 (off)
 BLKRAGET failed: Input/output error
 HDIO_GETGEO failed: Invalid argument
 busstate     =  1 (on)
Wed Jul 16 06:37pm root@uilleann ~ #
 
Old 07-16-2003, 05:50 PM   #9
elkrammer
LQ Newbie
 
Registered: Jul 2002
Location: Chile
Distribution: Debian Sid
Posts: 29

Original Poster
Rep: Reputation: 15
Blinker_Fluid: i don't think the problem is on my mount command... Anyway i get this:
# mount -t iso9660 /dev/hdc /foo
mount: block device /dev/hdc is write-protected, mounting read-only
mount: Not a directory

I think the problem is on what dmesg prints:
hdc: command error: status=0x51 { DriveReady SeekComplete Error }
hdc: command error: error=0x54
end_request: I/O error, dev 16:00 (hdc), sector 132
ISOFS: unable to read i-node block
 
Old 07-16-2003, 05:52 PM   #10
elkrammer
LQ Newbie
 
Registered: Jul 2002
Location: Chile
Distribution: Debian Sid
Posts: 29

Original Poster
Rep: Reputation: 15
fancypiper: It's not a DVD drive.. it's a normal CD drive...
 
Old 07-16-2003, 05:57 PM   #11
fancypiper
LQ Guru
 
Registered: Feb 2003
Location: Sparta, NC USA
Distribution: Ubuntu 10.04
Posts: 5,141

Rep: Reputation: 60
You have a data cd in the drive (audoi cds don't mount)?
 
Old 07-16-2003, 06:01 PM   #12
elkrammer
LQ Newbie
 
Registered: Jul 2002
Location: Chile
Distribution: Debian Sid
Posts: 29

Original Poster
Rep: Reputation: 15
Yeah it's a data CD...
I tried many different CD's and it happens the same... the CD's are in good state
 
Old 07-21-2003, 10:39 AM   #13
MalteseFalcon
LQ Newbie
 
Registered: Jul 2003
Location: Melbourne,Australia
Posts: 1

Rep: Reputation: 0
Im geting the same problem mounting was ok at first but being me i like to f**k around with things lol..

btw is there any command or the like to revert setings to default ?

Last edited by MalteseFalcon; 07-21-2003 at 10:40 AM.
 
  


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
How to give not-root user ability to mount devices to any mount point??? jdupre Linux - General 8 02-04-2012 10:03 AM
NFS mount of smb mount of windows share: permission denied problem :( Bagatur Linux - Networking 4 07-07-2009 11:34 AM
mount: unknown filesystem type 'ntfs' when trying to mount windows drive... DiZASTiX Linux - Hardware 12 09-28-2008 07:29 PM
can mount C not D FAT: invalid media value (0x45) mount: wrong fs type, bad option Emmanuel_uk Linux - Newbie 10 11-29-2005 02:47 AM
automount: mount(generic): failed to mount (null) (type iso9660) on /mnt/media/ vasudevadas Slackware 5 10-17-2005 03:05 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware

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