LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
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 06-19-2004, 03:54 PM   #1
ftcnt
LQ Newbie
 
Registered: May 2004
Posts: 14

Rep: Reputation: 0
cannot /mnt/cdrom using mandrake 10.0


im using mandrake version 10.0. however, i cannot access the cdrom drives that i have. i try to mount them and it says no medium found. can someone tell me how to troubleshoot this problem so that i can get my cdroms working and finally get the packages i want installed from the mandrake cds

thanks

p.s. i did a search and couldnt find anything on this topic.
 
Old 06-19-2004, 04:09 PM   #2
Mara
Moderator
 
Registered: Feb 2002
Location: Grenoble
Distribution: Debian
Posts: 9,696

Rep: Reputation: 232Reputation: 232Reputation: 232
Do you know how your cdrom drive is called in Linux? I assume you use IDE drives. So then it depends on your BIOS settings. Primary master is hda, primary slave hdb, secondary master hdc and so on. If you're unsuse, look into 'dmesg' output (you need to be root to run it). The file's long, but you should get lines beginning with 'hda', 'hdb' and so on (one for every disk/cdrom detected).For example, I've got this:
Code:
hdd: CRD-8520B, ATAPI CD/DVD-ROM drive
(it's model type). So I know that hdd is my cdrom. Then I can type
Code:
mkdir /mnt/cdrom2
(to create a new directory, you probably already have one). Insert data cd inside and run
Code:
mount -t iso9660 /dev/hdd /mnt/cdrom
Of course, you mayneed to replace both the cdrom device name and the directory.
 
Old 06-19-2004, 09:30 PM   #3
ftcnt
LQ Newbie
 
Registered: May 2004
Posts: 14

Original Poster
Rep: Reputation: 0
i can find both my cdrom drives.

hda: SAMSUNG SV4084H, ATA DISK drive
hdb: CD-ROM 50X, ATAPI CD/DVD-ROM drive
Using anticipatory io scheduler
ide0 at 0x1f0-0x1f7,0x3f6 on irq 14
hdc: SAMSUNG CD-R/RW DRIVE SW-208F, ATAPI CD/DVD-ROM drive
ide1 at 0x170-0x177,0x376 on irq 15drive

they are ide connection. however, when i put a cd and mount the drive, it just hangs there and then nothing happens. i have to take the cd out and if i try again, the same thing.

is there a way of fixing this. when i had redhat 8.0, i never encountered such a problem.
 
Old 06-19-2004, 10:57 PM   #4
amosf
Senior Member
 
Registered: Jun 2004
Location: Australia
Distribution: Mandriva/Slack - KDE
Posts: 1,672

Rep: Reputation: 46
Shouldn't be a problem with the cdrom in mdk10... I never did a thing for my latest install

What does your /etc/fstab look like, ie

cat /etc/fstab
 
Old 06-20-2004, 04:30 PM   #5
ftcnt
LQ Newbie
 
Registered: May 2004
Posts: 14

Original Poster
Rep: Reputation: 0
im not sure what cat /etc/fstab does but i did it and this is what i got...

/dev/hda5 / ext2 defaults 1 1
none /dev/pts devpts mode=0620 0 0
/dev/hdb /mnt/cdrom auto umask=0,user,iocharset=iso8859-1,codepage=850,noauto,ro,exec 0 0
/dev/hdc /mnt/cdrom2 auto umask=0,user,iocharset=iso8859-1,codepage=850,noauto,ro,exec 0 0
none /mnt/floppy supermount dev=/dev/fd0,fs=ext2:vfat,--,umask=0,iocharset=iso8859-1,sync,codepage=850 0 0
/dev/hda1 /mnt/win_c ntfs umask=0,nls=iso8859-1,ro 0 0
/dev/hda6 /mnt/win_d ntfs umask=0,nls=iso8859-1,ro 0 0
none /proc proc defaults 0 0
/dev/hda7 swap swap defaults 0 0


im still confused to why i cant get the cdroms to work
 
Old 06-20-2004, 06:04 PM   #6
amosf
Senior Member
 
Registered: Jun 2004
Location: Australia
Distribution: Mandriva/Slack - KDE
Posts: 1,672

Rep: Reputation: 46
fstab is where the drives are defined for the OS...

Everything looks okay there I think... So I don't know what's the matter :-(

The cdrom should mount automatically when you click on the desktop cdrom icon...

If you do

mount /mnt/cdrom

as root, that should mount a cdrom if it's being a bit stuborn :-)

Can't imagine why that won't work in this case tho...

Anyone else with ideas?
 
Old 06-21-2004, 03:09 PM   #7
Mara
Moderator
 
Registered: Feb 2002
Location: Grenoble
Distribution: Debian
Posts: 9,696

Rep: Reputation: 232Reputation: 232Reputation: 232
Insert a cd into one of your cdrom drives and look into /var/log/messages. There should be a message or two about the cdrom. If there's csomething copy it here.
 
Old 06-23-2004, 09:18 PM   #8
Ciccio
Member
 
Registered: Nov 2002
Location: Paraguay
Distribution: Mandrake 10
Posts: 573

Rep: Reputation: 30
I have the same problem on an old redhat7.3... but it didn't do it before. I'm afraid it might be broken or something... :-(

Anyway.../var/log/messages says that I should check if there is a disk in the drive... and there is one... i am sure....
 
Old 06-26-2004, 11:58 AM   #9
ftcnt
LQ Newbie
 
Registered: May 2004
Posts: 14

Original Poster
Rep: Reputation: 0
Quote:
Originally posted by Mara
Insert a cd into one of your cdrom drives and look into /var/log/messages. There should be a message or two about the cdrom. If there's csomething copy it here.
i put a cd in and check the /var/log/messages and there is nothing there.

interestingly, when i use this viewer called nautilus, i can get one of the cd drives to work. otherwise, none of them work. even when im logged in as root.
 
Old 06-27-2004, 02:05 PM   #10
Mara
Moderator
 
Registered: Feb 2002
Location: Grenoble
Distribution: Debian
Posts: 9,696

Rep: Reputation: 232Reputation: 232Reputation: 232
Hmmm...So insert the disk, run the command to mount it and then look into /var/log/messages. Anything interesting?
 
  


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
permission for /mnt/cdrom bruse Mandriva 4 03-25-2005 11:17 AM
i changed /mnt/cdrom to /mnt/CD-RW - now i've got a problem?!?! spyghost Linux - Software 7 09-30-2003 02:06 PM
/mnt/cdrom & /mnt/scd0 locks up machine RIgimp75 Mandriva 7 09-01-2003 09:32 PM
mnt cdrom - mandrake 9.1 david@aber Linux - Distributions 2 07-31-2003 11:20 AM
CD problems: /mnt/cdrom and /dev/cdrom okok Linux - Newbie 5 04-09-2003 10:11 AM

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

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