Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum. |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
|
08-23-2003, 02:59 PM
|
#1
|
LQ Newbie
Registered: Aug 2003
Location: Sweden
Distribution: Gentoo
Posts: 7
Rep:
|
Cant use CDROM drive
I cant mount any cdroms, when i try 'mount /dev/cdrom /mnt/cdrom' i get a message telling me that the device /dev/cdrom doent exist, i get the same error if i replace /dev/cdrom w/ /dev/hdc, i have one cdrom reader and it worked great w/ the gentoo livecd (i use gentoo) and it also works great in Red Hat linux 9, any ideas? 
|
|
|
08-23-2003, 03:02 PM
|
#2
|
Senior Member
Registered: Jul 2003
Location: So. Cal.
Distribution: Slack 11
Posts: 1,737
Rep:
|
Did u check your configuration to make sure the CDrom is visible? Is there a disk in the cdrom?
|
|
|
08-23-2003, 03:06 PM
|
#3
|
LQ Newbie
Registered: Aug 2003
Location: Sweden
Distribution: Gentoo
Posts: 7
Original Poster
Rep:
|
i dunnu what you mean by visible, and there is a cdrom in it, i tried w/ 2 different ones and i shold say taht i am pretty much a linux newb
|
|
|
08-23-2003, 03:09 PM
|
#4
|
Senior Member
Registered: Jul 2003
Location: So. Cal.
Distribution: Slack 11
Posts: 1,737
Rep:
|
I dont know about gentoo but there should be a configuration setting or hardware browser that shows all your drives and other stuff so you can determine what hardware is on your machine.
|
|
|
08-23-2003, 03:14 PM
|
#5
|
LQ Newbie
Registered: Aug 2003
Location: Sweden
Distribution: Gentoo
Posts: 7
Original Poster
Rep:
|
yeah, i did that somehow, looked the cdrom up i mean, and the pc found it, it said something 'hdc [cdrom name] and some other cryptic stuff' so, it can find my cdrom..
|
|
|
08-23-2003, 03:15 PM
|
#6
|
Member
Registered: Jun 2003
Location: Seychelles
Distribution: RedHat 8.0, Gentoo
Posts: 32
Rep:
|
try
mount /dev/hde /mnt/cdrom
|
|
|
08-23-2003, 03:17 PM
|
#7
|
LQ Newbie
Registered: Aug 2003
Location: Sweden
Distribution: Gentoo
Posts: 7
Original Poster
Rep:
|
says that hde cant be found
|
|
|
08-23-2003, 03:25 PM
|
#8
|
Member
Registered: Jun 2003
Location: Seychelles
Distribution: RedHat 8.0, Gentoo
Posts: 32
Rep:
|
hmm, i had the same prob lately when installing gentoo on a pcmcia cdrom, but it worked eventually with the hde
so i guess you have to try all the /dev/hd*
where * = a to i don't know what
cheer
|
|
|
08-23-2003, 03:26 PM
|
#9
|
LQ Newbie
Registered: Aug 2003
Location: Sweden
Distribution: Gentoo
Posts: 7
Original Poster
Rep:
|
i have tried em all...
|
|
|
08-23-2003, 03:34 PM
|
#10
|
Member
Registered: Jun 2003
Location: Seychelles
Distribution: RedHat 8.0, Gentoo
Posts: 32
Rep:
|
try
llok at the kernel boot log messages, and c if it found the cdrom(s)
check in the file /var/log/syslog
|
|
|
08-23-2003, 03:51 PM
|
#11
|
LQ Newbie
Registered: Aug 2003
Location: Sweden
Distribution: Gentoo
Posts: 7
Original Poster
Rep:
|
nothing interesting there, i can see (i think) that hdc is supposed to be my cdrom
|
|
|
08-23-2003, 04:07 PM
|
#12
|
Member
Registered: Jun 2003
Location: Seychelles
Distribution: RedHat 8.0, Gentoo
Posts: 32
Rep:
|
hmmm. i guess you did try hdf, hdg and hdh ?
|
|
|
08-23-2003, 04:14 PM
|
#13
|
Member
Registered: Jun 2003
Location: Seychelles
Distribution: RedHat 8.0, Gentoo
Posts: 32
Rep:
|
okay try this,
boot from your live cd.
when it shows you the scrollbar and the gentoo logo press f2, and check the device name the cd finds  , then try that.
you have to be fast 
|
|
|
08-23-2003, 09:44 PM
|
#14
|
Senior Member
Registered: Jun 2003
Location: Sydney
Distribution: Debian, FreeBSD
Posts: 1,713
Rep:
|
Hmmm... I'm not sure if these ideas will help but they might. Firstly, do you have permission to mount the cdrom? Try mounting it as root. If that succeeds add your username to the "cdrom" group. Secondly, try specifying a filesystem type (ie type "mount -t iso9660 /dev/cdrom /mnt/cdrom". Thirdly, check the /dev/cdrom symlink to double check where it's pointing to. Fourthly, it may be that your fstab is set up correctly but you're bypassing it. Try just typing "mount /mnt/cdrom" (ie just specifiy the mount point) or check your /etc/fstab file to see what the mount point is if it isn't /mnt/cdrom. If all that fails then you said that the gentoo live cd works, right? Boot that and pillage the /etc/fstab file. Once that's on your hard drive, type "mount /mnt/cdrom" or whatever the specified mount point is.
Just so you know, the fstab file is divided up into the following fields:
<file system> <mount point> <filesystem type> <options> <dump> <pass>
and they're usually separated by spaces or tabs. Tabs are nice because then everything is easy to read.
|
|
|
08-23-2003, 10:07 PM
|
#15
|
LQ Newbie
Registered: Aug 2003
Distribution: Mandrake
Posts: 4
Rep:
|
Hmm.. this has happened to me while using Mandrake 9.1. It seems they are copying solaris and hpux's way of device file naming and they are using /dev/ide/host*/bus*/target*/lun*
You might want to look for that for your CD and do a soft link to /dev/cdrom to the correct path.
Luis
|
|
|
All times are GMT -5. The time now is 12:56 AM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|