LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
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 11-26-2008, 08:08 PM   #1
M$ISBS
Member
 
Registered: Aug 2003
Posts: 834

Rep: Reputation: 30
How do I mount a CDrom or DVD writer?


When I do " mount /dev/cdwriter /mnt/cdwriter "

I get a message saying only root can do that, then when I do it as root I

get a message saying " no media found ", but I know there is somthing on

the disks I have been trying to mount.


What should I do?
 
Old 11-26-2008, 08:22 PM   #2
jpgauvin
LQ Newbie
 
Registered: Nov 2008
Location: Montreal
Distribution: RHEL 4, Fedora, CentOS, Ubuntu
Posts: 8

Rep: Reputation: 0
did you create your mount point /mnt/cdwriter with mkdir ?

you can also use the command dmesg|more to see if linux was able to see your cdwriter on bootup

--Jean-Philippe
 
Old 11-26-2008, 08:29 PM   #3
M$ISBS
Member
 
Registered: Aug 2003
Posts: 834

Original Poster
Rep: Reputation: 30
Yes I created a mount point like that
I did dmesg|more and theres these two lines:

hdc: LITE-ON DVDRW SOHW-1633S, ATAPI CD/DVD-ROM drive
hdd: LTN526D, ATAPI CD/DVD-ROM drive

Fstab:

/dev/hda2 swap swap defaults 0 0
/dev/hda1 / reiserfs defaults 1 1
/dev/cdrom /mnt/cdrom auto noauto,users,rw 0 0
/dev/cdwriter /mnt/cdwriter auto noauto,users,rw 0 0
/dev/fd0 /mnt/floppy auto noauto,owner 0 0
/dev/sda1 /mnt/exthd auto noauto,users,rw 0 0
/dev/sda2 /mnt/flash auto noauto,users,rw 0 0
/dev/sda3 /mnt/camera auto noauto,users,rw 0 0
devpts /dev/pts devpts gid=5,mode=620 0 0
proc /proc proc defaults 0 0
 
Old 11-26-2008, 08:41 PM   #4
jstephens84
Senior Member
 
Registered: Sep 2004
Location: Nashville
Distribution: Manjaro, RHEL, CentOS
Posts: 2,098

Rep: Reputation: 102Reputation: 102
Now that you have created the mount point, try issue the following
Code:
mount -t iso9660 /dev/hdc /mnt/cdwriter
 
Old 11-26-2008, 08:47 PM   #5
M$ISBS
Member
 
Registered: Aug 2003
Posts: 834

Original Poster
Rep: Reputation: 30
Quote:
Originally Posted by jstephens84 View Post
Now that you have created the mount point, try issue the following
Code:
mount -t iso9660 /dev/hdc /mnt/cdwriter
As user I get " only root can do that "
and as root I get no medium found.

This is driving me F%$#% crazy!!
 
Old 11-26-2008, 08:54 PM   #6
jstephens84
Senior Member
 
Registered: Sep 2004
Location: Nashville
Distribution: Manjaro, RHEL, CentOS
Posts: 2,098

Rep: Reputation: 102Reputation: 102
yes only root can mount the cdrom unless you add your user to I think the wheel group or cdrom group. I just tested and your error will pop up for one of the following conditions.

1. No Cd is in the drive
2. Cd is blank
3. Mounting wrong removable media drive.

So I would start by checking that you don't have the cd in the wrong drive.
 
Old 11-26-2008, 09:02 PM   #7
M$ISBS
Member
 
Registered: Aug 2003
Posts: 834

Original Poster
Rep: Reputation: 30
Quote:
Originally Posted by jstephens84 View Post
yes only root can mount the cdrom unless you add your user to I think the wheel group or cdrom group. I just tested and your error will pop up for one of the following conditions.

1. No Cd is in the drive
2. Cd is blank
3. Mounting wrong removable media drive.

So I would start by checking that you don't have the cd in the wrong drive.
OK your right. I tried the other drive the (non writer) and it mounts

automatically in KDE and I dont have to do anything from command line.

Obviously the next question is..... How do I get the DVD/CD writer to do

that?
 
Old 11-26-2008, 09:07 PM   #8
jstephens84
Senior Member
 
Registered: Sep 2004
Location: Nashville
Distribution: Manjaro, RHEL, CentOS
Posts: 2,098

Rep: Reputation: 102Reputation: 102
the exact same way that you just did for the cdrom. If it doesn't work than you might have something wrong with your hardware (cd writer).
 
Old 11-26-2008, 09:09 PM   #9
M$ISBS
Member
 
Registered: Aug 2003
Posts: 834

Original Poster
Rep: Reputation: 30
Hmmm..... I think I will remvove the cdrom alltogether and hookup the writer where the cdrom was and see what that does.
 
Old 11-26-2008, 09:12 PM   #10
M$ISBS
Member
 
Registered: Aug 2003
Posts: 834

Original Poster
Rep: Reputation: 30
Another odd thing is that the cdrom opens up in KDE as A writer, not as a cdrom, but the writer does not open up at all.
 
Old 11-27-2008, 05:57 PM   #11
M$ISBS
Member
 
Registered: Aug 2003
Posts: 834

Original Poster
Rep: Reputation: 30
Does anyone have any idea why Linux cannot mount or see whats on a CD that I know has data on it?

It seems if Linux is supposed to be such an advanced OS then mounting should be A simple operation, instead of locking up, not seeing data on a disk or giving some strange messages from the command line.

Ive tried all the advice, googled for an hour on the subject, read the man pages for mount and fstab and nothing seems to work.

What else should I try to get Linux to recognize CDrom drives or the data on a CD?


 
Old 11-28-2008, 02:21 AM   #12
ozminh
Member
 
Registered: Aug 2007
Posts: 73

Rep: Reputation: 19
i mount a data cd/dvd with /dev/hd* or /dev/cdrom, /dev/dvd....
but cdrecord etc.. '/dev/cdwriter'
 
Old 11-28-2008, 02:36 AM   #13
lakedude
Member
 
Registered: Jun 2005
Distribution: Puppy, Sabayon
Posts: 141

Rep: Reputation: 16
Quote:
Originally Posted by M$ISBS View Post
Does anyone have any idea why Linux cannot mount or see whats on a CD that I know has data on it?

It seems if Linux is supposed to be such an advanced OS then mounting should be A simple operation, instead of locking up, not seeing data on a disk or giving some strange messages from the command line.

Ive tried all the advice, googled for an hour on the subject, read the man pages for mount and fstab and nothing seems to work.

What else should I try to get Linux to recognize CDrom drives or the data on a CD?


Was this working before on some other type of software?

Does your bios see both drives?

Are they pata or sata drives?

If pata do you have the master/slave/cable select jumpers in the right spot?

If bios does not see the drive no OS in the world is going to see it either....

Last edited by lakedude; 11-28-2008 at 02:37 AM.
 
Old 11-30-2008, 10:18 AM   #14
ozminh
Member
 
Registered: Aug 2007
Posts: 73

Rep: Reputation: 19
i got the same problem with multi-session cd
try to read single session -> .bin/.img file.
it works
 
  


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
Unable to mount SATA DVD writer with Fedora2 stubbywan Linux - Newbie 2 12-20-2007 07:05 AM
cant mount my DVD writer shahz Linux - Enterprise 4 01-25-2007 05:42 AM
Cant mount dvd writer and will only mount as read only. M$ISBS Linux - Newbie 7 11-06-2006 08:23 PM
DVD Writer still /mnt/cdrom Vindane Linux - Hardware 1 06-05-2004 04:49 PM

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

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