LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
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 03-27-2004, 09:02 AM   #1
chrisk5527
Member
 
Registered: Oct 2002
Location: Michigan
Distribution: Slackware Linux 10.0
Posts: 289

Rep: Reputation: 30
Mounting a DVD


How do you mount a DVD? This is my fstab entry for my DVD ROM, it was autogenerated by Fedora during the setup.

/dev/cdrom /mnt/cdrom udf,iso9660 noauto,owner,kudzu,ro 0 0

I've tried just the usually mount command, "mount /dev/cdrom", but it doesnt work.
 
Old 03-27-2004, 09:52 AM   #2
mikshaw
LQ Addict
 
Registered: Dec 2003
Location: Maine, USA
Distribution: Slackware/SuSE/DSL
Posts: 1,320

Rep: Reputation: 45
If you're just playing a DVD (e.g. a movie) you don't need to mount it.
If it's a data DVD, the thing you mentioned should have worked?
 
Old 03-27-2004, 10:15 AM   #3
chrisk5527
Member
 
Registered: Oct 2002
Location: Michigan
Distribution: Slackware Linux 10.0
Posts: 289

Original Poster
Rep: Reputation: 30
Its a data DVD, but it doesnt mount.
 
Old 03-27-2004, 10:39 AM   #4
acid_kewpie
Moderator
 
Registered: Jun 2001
Location: UK
Distribution: Gentoo, RHEL, Fedora, Centos
Posts: 43,417

Rep: Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985
how about expanding on "but it doesnt work", we're not psychic
 
Old 03-27-2004, 01:37 PM   #5
chrisk5527
Member
 
Registered: Oct 2002
Location: Michigan
Distribution: Slackware Linux 10.0
Posts: 289

Original Poster
Rep: Reputation: 30
(#:~)- mount /dev/cdrom
mount: wrong fs type, bad option, bad superblock on /dev/cdrom,
or too many mounted file systems


That is my error when I try mounting it.
 
Old 03-27-2004, 01:46 PM   #6
r_jensen11
Senior Member
 
Registered: Apr 2003
Location: Minnesota, USA
Distribution: Slack 10.0 w/2.4.26
Posts: 1,032

Rep: Reputation: 45
post your /etc/fstab
 
Old 03-27-2004, 01:48 PM   #7
chrisk5527
Member
 
Registered: Oct 2002
Location: Michigan
Distribution: Slackware Linux 10.0
Posts: 289

Original Poster
Rep: Reputation: 30
I did on the first post.
 
Old 03-27-2004, 02:05 PM   #8
r_jensen11
Senior Member
 
Registered: Apr 2003
Location: Minnesota, USA
Distribution: Slack 10.0 w/2.4.26
Posts: 1,032

Rep: Reputation: 45
Sorry. How about you change the fs type to auto and see how that acts? Would that even work?
 
Old 03-27-2004, 02:32 PM   #9
chrisk5527
Member
 
Registered: Oct 2002
Location: Michigan
Distribution: Slackware Linux 10.0
Posts: 289

Original Poster
Rep: Reputation: 30
I tried:
mount -t udf /dev/cdrom /mnt/cdrom
mount -t auto /dev/cdrom /mnt/cdrom

Neither worked.......
 
Old 03-27-2004, 02:35 PM   #10
acid_kewpie
Moderator
 
Registered: Jun 2001
Location: UK
Distribution: Gentoo, RHEL, Fedora, Centos
Posts: 43,417

Rep: Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985
right, so what is /dev/cdrom then? "ls -l /dev/cdrom"
 
Old 03-27-2004, 02:40 PM   #11
chrisk5527
Member
 
Registered: Oct 2002
Location: Michigan
Distribution: Slackware Linux 10.0
Posts: 289

Original Poster
Rep: Reputation: 30
# ls -l /dev/cdrom
lrwxrwxrwx 1 root root 9 Feb 11 14:56 /dev/cdrom -> /dev/scd0
 
Old 03-27-2004, 03:00 PM   #12
acid_kewpie
Moderator
 
Registered: Jun 2001
Location: UK
Distribution: Gentoo, RHEL, Fedora, Centos
Posts: 43,417

Rep: Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985
ahh right, ok, so it's only a dvdrom? it's appaerntly set up with scsi emulation... edit lilo.conf and remove the line hdc=ide-scsi or whatever device it actually is. you'll then need to recreate a like to /dev/cdrom from /dev/hdc instead, ... easiest first to try mounting it directly to the original ide device name

mount /dev/hdc /mnt/dvd
 
Old 03-27-2004, 03:13 PM   #13
chrisk5527
Member
 
Registered: Oct 2002
Location: Michigan
Distribution: Slackware Linux 10.0
Posts: 289

Original Poster
Rep: Reputation: 30
What do you mean recreate /dev/cdrom? Re-link it? If thats the case, what do I link it to?
 
Old 03-27-2004, 03:18 PM   #14
chrisk5527
Member
 
Registered: Oct 2002
Location: Michigan
Distribution: Slackware Linux 10.0
Posts: 289

Original Poster
Rep: Reputation: 30
# ln -s /dev/hdc /dev/cdrom
# 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?)

And I even tried
# mount /dev/hdc
and it still didnt work with same output
 
Old 03-27-2004, 04:01 PM   #15
acid_kewpie
Moderator
 
Registered: Jun 2001
Location: UK
Distribution: Gentoo, RHEL, Fedora, Centos
Posts: 43,417

Rep: Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985
you'll need to remove the scsi emulation first, it will always try to use it as a scsi device with that module in place.
 
  


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
Mounting DVD to a CDR/DVD combo drive f34r7h1s Slackware 38 05-16-2005 07:50 PM
Mounting DVD RW megadeth Slackware 1 05-03-2005 03:18 PM
Mounting a DVD in Fedora xamdbz01 Fedora 1 07-27-2004 02:08 AM
Mounting a CD-R on a DVD drive Pwcca Linux - Hardware 2 07-27-2003 04:53 PM
DVD Mounting mrsolo Linux - Software 17 04-09-2003 10:56 PM

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

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