LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 11-07-2004, 09:22 PM   #1
k_bob
Member
 
Registered: Nov 2004
Location: Daytona Beach
Distribution: Slackware, Windows
Posts: 42

Rep: Reputation: 15
Can't mount dvd or cdrw drive


Hey, I can't find my dvd drive or cdrw drive.

From what I have read so far it should be dev/hdc or dev/hdd or something like that.


I got my cd rom to mount it was dev/cdrom.... and I changed its permission so all users can mount it and stuff, I wanted to watch a dvd but I can't get the drive to mount. I did install xine.

Any ideas?
 
Old 11-07-2004, 09:23 PM   #2
mdarby
Member
 
Registered: Nov 2004
Location: Columbus, Ohio
Distribution: Slackware-Current / Debian
Posts: 795

Rep: Reputation: 30
How many hard drives do you have in your computer?

(The proper path would be /dev/hd<?>)
 
Old 11-07-2004, 09:25 PM   #3
k_bob
Member
 
Registered: Nov 2004
Location: Daytona Beach
Distribution: Slackware, Windows
Posts: 42

Original Poster
Rep: Reputation: 15
I have four... One CD drive, one cd writer, one dvd drive and one hdd.... the cd drive and hdd I found... I can't find the cd writer or dvd drive which are connected to the same ide spot
 
Old 11-07-2004, 09:26 PM   #4
mdarby
Member
 
Registered: Nov 2004
Location: Columbus, Ohio
Distribution: Slackware-Current / Debian
Posts: 795

Rep: Reputation: 30
Have you tried /dev/hde or /dev/hdf?
 
Old 11-07-2004, 09:29 PM   #5
k_bob
Member
 
Registered: Nov 2004
Location: Daytona Beach
Distribution: Slackware, Windows
Posts: 42

Original Poster
Rep: Reputation: 15
as root I did this

bash-2.05b# mount /dev/hde
mount: can't find /dev/hde in /etc/fstab or /etc/mtab
bash-2.05b# mount /dev/hdf
mount: can't find /dev/hdf in /etc/fstab or /etc/mtab
bash-2.05b# mount /dev/hdc
mount: can't find /dev/hdc in /etc/fstab or /etc/mtab
bash-2.05b# mount /dev/cdrom
mount: No medium found
bash-2.05b#
 
Old 11-07-2004, 09:32 PM   #6
mdarby
Member
 
Registered: Nov 2004
Location: Columbus, Ohio
Distribution: Slackware-Current / Debian
Posts: 795

Rep: Reputation: 30
you need to specify a mount point.

mkdir /mnt/DVD
mkdir /mnt/CDRW
mount /dev/hde /mnt/DVD
mount /dev/hdf /mnt/CDRW
 
Old 11-07-2004, 09:34 PM   #7
k_bob
Member
 
Registered: Nov 2004
Location: Daytona Beach
Distribution: Slackware, Windows
Posts: 42

Original Poster
Rep: Reputation: 15
okay I did this as root

bash-2.05b# mkdir /mnt/dvd
mkdir: cannot create directory `/mnt/dvd': File exists
bash-2.05b# mkdir /mnt/cdrw
bash-2.05b# mount /dev/hde /mnt/dvd
mount: special device /dev/hde does not exist
bash-2.05b# mount /dev/hdf /mnt/cdrw
mount: special device /dev/hdf does not exist
bash-2.05b#
 
Old 11-07-2004, 09:36 PM   #8
mdarby
Member
 
Registered: Nov 2004
Location: Columbus, Ohio
Distribution: Slackware-Current / Debian
Posts: 795

Rep: Reputation: 30
try

mount /dev/hdc /mnt/DVD
mount /dev/hdd /mnt/CDRW
 
Old 11-07-2004, 09:37 PM   #9
k_bob
Member
 
Registered: Nov 2004
Location: Daytona Beach
Distribution: Slackware, Windows
Posts: 42

Original Poster
Rep: Reputation: 15
it says the mount point doesn't exist

bash-2.05b# mount /dev/hdc /mnt/DVD
mount: mount point /mnt/DVD does not exist
bash-2.05b# mount /dev/hdd /mnt/CDRW
mount: mount point /mnt/CDRW does not exis
 
Old 11-07-2004, 09:38 PM   #10
mdarby
Member
 
Registered: Nov 2004
Location: Columbus, Ohio
Distribution: Slackware-Current / Debian
Posts: 795

Rep: Reputation: 30
/mnt/DVD isn't the same as /mnt/dvd.

 
Old 11-07-2004, 09:40 PM   #11
k_bob
Member
 
Registered: Nov 2004
Location: Daytona Beach
Distribution: Slackware, Windows
Posts: 42

Original Poster
Rep: Reputation: 15
? I know cause linux is case sensitve, but when I made the directories I made them lower case. However, the dvd still doesn't mount....
 
Old 11-07-2004, 09:42 PM   #12
mdarby
Member
 
Registered: Nov 2004
Location: Columbus, Ohio
Distribution: Slackware-Current / Debian
Posts: 795

Rep: Reputation: 30
By your earlier post you were attempting to mount as such:

bash-2.05b# mount /dev/hdc /mnt/DVD
bash-2.05b# mount /dev/hdd /mnt/CDRW

since you created the mount points lowercase, try:

mount /dev/hdc /mnt/dvd
mount /dev/hdd /mnt/cdrw
 
Old 11-07-2004, 09:47 PM   #13
k_bob
Member
 
Registered: Nov 2004
Location: Daytona Beach
Distribution: Slackware, Windows
Posts: 42

Original Poster
Rep: Reputation: 15
Okay I did this

bash-2.05b# mount /dev/hdc /mnt/dvd
mount: No medium found
bash-2.05b# mount /dev/hdd /mnt/cdrw
mount: special device /dev/hdd does not exist

it said no medium found, but there was a dvd in there... however I put a cd into my plain cd drive and it found that, which I should have know cause my regular cd-drive works and that is /dev/hdc
 
Old 11-07-2004, 09:49 PM   #14
mdarby
Member
 
Registered: Nov 2004
Location: Columbus, Ohio
Distribution: Slackware-Current / Debian
Posts: 795

Rep: Reputation: 30
it looks like your missing drive would be /dev/hdb
 
Old 11-07-2004, 09:51 PM   #15
k_bob
Member
 
Registered: Nov 2004
Location: Daytona Beach
Distribution: Slackware, Windows
Posts: 42

Original Poster
Rep: Reputation: 15
so by saying special device that means it found the device? cause I still can't see anything on the dvd or get it to play in xine
 
  


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
DVD Drive and CDRW Drive Will not mount on Slackware 10.1 Kernel 2.6.1 necrozen Linux - Hardware 1 09-13-2005 08:21 PM
DVD/CDRW Mount Help monks_point Slackware 2 08-29-2005 06:26 PM
Cannot mount DVD/CDRW Combo drive iff in fstab Iggyboo Linux - Hardware 0 12-21-2004 05:18 PM
Play DVD on CDRW/DVD Combo Drive?? halo14 Linux - Laptop and Netbook 13 09-21-2004 09:21 AM
yet another can't mount cdrw/dvd problem :/ station Slackware 4 09-14-2003 09:07 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

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