LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware
User Name
Password
Linux - Hardware This forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux?

Notices


Reply
  Search this Thread
Old 10-11-2006, 05:46 PM   #1
Neko_D
Member
 
Registered: Oct 2006
Distribution: Ubuntu 6.10
Posts: 59

Rep: Reputation: 15
Cant DVD-RW and FAT32


Ok so I have a FAT32 partition on my current harddrive as well as an External DVD-RW. And I cannot mount or see them in Linux. So can anyone help me figure out why they do not appear? They appear on my hwbrowser but I cannot mount them so I can use them.

I have added my FAT32 to my /etc/fstab file and when Fedora boots up fedora says that it cannot find the drive. Here are the contents of my fstab file.
Quote:
Originally Posted by fstab
/dev/VolGroup00/LogVol00 / ext3 defaults 1 1
LABEL=/boot /boot ext3 defaults 1 2
devpts /dev/pts devpts gid=5,mode=620 0 0
tmpfs /dev/shm tmpfs defaults 0 0
proc /proc proc defaults 0 0
sysfs /sys sysfs defaults 0 0
/dev/VolGroup00/LogVol01 swap swap defaults 0 0
/dev/hdc2 /media/hdc2 fat32 umask=000 0 0
As for my DVD burner the only thing I can tell you is that it is a /dev/scd0
 
Old 10-11-2006, 06:07 PM   #2
dracolich
Senior Member
 
Registered: Jul 2005
Distribution: Slackware
Posts: 1,271

Rep: Reputation: 63
In the fstab change fat32 to vfat. For the dvd-rw, what kind of disc are you trying to mount and how? From the commandline it would be something like

mount -t udf /dev/scd0 /mnt/dvdrw

dvd movies don't need to mount to watch.
 
Old 10-11-2006, 07:55 PM   #3
Neko_D
Member
 
Registered: Oct 2006
Distribution: Ubuntu 6.10
Posts: 59

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by dracolich
In the fstab change fat32 to vfat. For the dvd-rw, what kind of disc are you trying to mount and how? From the commandline it would be something like

mount -t udf /dev/scd0 /mnt/dvdrw

dvd movies don't need to mount to watch.
Ok I will change that. As for my DVD I am trying to mount all forms of DVD media, DVD-ROM, DVD-R, DVD-RW, DVD-RAM.

I tried the above command to mount my DVD-RAM drive and this is what I got
Quote:
Originally Posted by terminal
[root@localhost darek]# mount -t udf /dev/scd0 /mnt/dvdram
mount: mount point /mnt/dvdram does not exist
[root@localhost darek]# mount -t udf /dev/scd0 /mnt/dvdrw
mount: mount point /mnt/dvdrw does not exist
[root@localhost darek]# mount -t udf /dev/scd0 /media/dvdrw
mount: mount point /media/dvdrw does not exist

Last edited by Neko_D; 10-11-2006 at 07:58 PM.
 
Old 10-11-2006, 08:01 PM   #4
lazlow
Senior Member
 
Registered: Jan 2006
Posts: 4,363

Rep: Reputation: 172Reputation: 172
Neko

If you are running FC5 (I think I remember that) the standard mount pt is in /media .

The second point entry (/mnt/dvdrw in example) is just the name of a directory. You can call it whatever you like.

DVD-Ram mounts a little differently I think (different file system)


Lazlow
 
Old 10-11-2006, 08:06 PM   #5
Neko_D
Member
 
Registered: Oct 2006
Distribution: Ubuntu 6.10
Posts: 59

Original Poster
Rep: Reputation: 15
Ok after much typing and playing around I almost managed to get my DVD-RW to get on my file system. Whenever I try and mount my DVD-RW I always get this error

mount: block device /dev/scd0 is write-protected, mounting read-only
mount: wrong fs type, bad option, bad superblock on /dev/scd0,
missing codepage or other error
In some cases useful info is found in syslog - try
dmesg | tail or so


And nothing is mounted. So then I try to mount the DVD-RW under the file system NTFS, as listed in man 8 mount. And FC5 says that NTFS is an unknown file system. I just want to watch the stuff on my DVD-R's on FC5. How do I get them to appear. I burned all the DVD-R's on windows.

Last edited by Neko_D; 10-11-2006 at 08:37 PM.
 
Old 10-11-2006, 08:16 PM   #6
lazlow
Senior Member
 
Registered: Jan 2006
Posts: 4,363

Rep: Reputation: 172Reputation: 172
Neko

The Dvd-ram thing I mention would only show up when you put in a Dvd-ram disk(media) (not any of the other formats).

Are you trying to mount blank media (bad idea). If so try a disk with something on it (like the install disk).

Lazlow
 
Old 10-11-2006, 08:27 PM   #7
lazlow
Senior Member
 
Registered: Jan 2006
Posts: 4,363

Rep: Reputation: 172Reputation: 172
Ok, on the partition not showing up. When you look at hardware browser, how is that partition shown? Should be like /dev/hda2 or something close. Whatever it show up as is the first entry in fstab.

Is the DVD a usb device? If it is FC lists them as /dev/sdX (X=then device usually "a" as in sda).

Lazlow
 
Old 10-11-2006, 08:28 PM   #8
farslayer
LQ Guru
 
Registered: Oct 2005
Location: Northeast Ohio
Distribution: linuxdebian
Posts: 7,249
Blog Entries: 5

Rep: Reputation: 191Reputation: 191
Create the mount point for your DVD Drive

mkdir /media/dvd

Add the DVD Drive to your /etc/fstab file
Code:
/dev/scd        /media/dvd   iso9660 ro,user,noauto  0       0
Put a regular data CD in the drive and mount it to test..

mount /dev/scd

Blank media can be used in conjunction with an app like K3B

Is that a SATA DVD Drive ? interesting..
 
Old 10-11-2006, 08:41 PM   #9
Neko_D
Member
 
Registered: Oct 2006
Distribution: Ubuntu 6.10
Posts: 59

Original Poster
Rep: Reputation: 15
Ok after much typing and playing around I almost managed to get my DVD-RW to get on my file system. Whenever I try and mount my DVD-RW I always get this error

mount: block device /dev/scd0 is write-protected, mounting read-only
mount: wrong fs type, bad option, bad superblock on /dev/scd0,
missing codepage or other error
In some cases useful info is found in syslog - try
dmesg | tail or so


And nothing is mounted. So then I try to mount the DVD-RW under the file system NTFS, as listed in man 8 mount. And FC5 says that NTFS is an unknown file system. I just want to watch the stuff on my DVD-R's on FC5. How do I get them to appear. I burned all the DVD-R's on windows.

Farslayer:
I will try that as well thanks.
 
Old 10-11-2006, 11:32 PM   #10
Neko_D
Member
 
Registered: Oct 2006
Distribution: Ubuntu 6.10
Posts: 59

Original Poster
Rep: Reputation: 15
Ok thanks to you guys I am almost done with this problem. So I get the DVD drive to be mounted. But there is one catch, there has to be media in it. So my question is how do I get the DVD drive to mount reguardless of whether or not there is media in it?
 
Old 10-11-2006, 11:45 PM   #11
farslayer
LQ Guru
 
Registered: Oct 2005
Location: Northeast Ohio
Distribution: linuxdebian
Posts: 7,249
Blog Entries: 5

Rep: Reputation: 191Reputation: 191
The drive will only mount when it has Media (with data) in it..

you do NOT moount
Music CD's
Movie DVD's
Blank CD media
Blank DVD Media

Blank media will be written to when it is in the device and not mounted..
Music and movies will be played back from the device without being mounted
 
Old 10-12-2006, 02:27 PM   #12
Neko_D
Member
 
Registered: Oct 2006
Distribution: Ubuntu 6.10
Posts: 59

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by farslayer
The drive will only mount when it has Media (with data) in it..

you do NOT moount
Music CD's
Movie DVD's
Blank CD media
Blank DVD Media

Blank media will be written to when it is in the device and not mounted..
Music and movies will be played back from the device without being mounted
Ok, well I have a lot of Data DVDs and CDs out there, dvds with fansubs on them, do I need to mount to get those to work?
 
Old 10-12-2006, 02:42 PM   #13
lazlow
Senior Member
 
Registered: Jan 2006
Posts: 4,363

Rep: Reputation: 172Reputation: 172
Data DVD/cd yes.
Fansubs, if they will play in a regular standalone dvd player then no.
 
Old 10-12-2006, 05:25 PM   #14
Neko_D
Member
 
Registered: Oct 2006
Distribution: Ubuntu 6.10
Posts: 59

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by lazlow
Data DVD/cd yes.
Fansubs, if they will play in a regular standalone dvd player then no.
Ha ha alright then. Thanks.

So lets say that I am going on a marathon and I get through all 20-26 episodes of anime on my DVD-RW. How would I get the DVD-RW to eject the DVD-R? Because I push the Eject button but nothing happens.

Last edited by Neko_D; 10-12-2006 at 05:32 PM.
 
Old 10-12-2006, 06:12 PM   #15
Electro
LQ Guru
 
Registered: Jan 2002
Posts: 6,042

Rep: Reputation: Disabled
Use the eject utility or unmount the disc first and then press the eject button. When the disc is mount or in use, you can not press the eject button although when using automounters like dbus or supermount, pressing the eject button will work.

In order to mount a FAT32 partition, use vfat as the file system. It is not fat32.
 
  


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
which DVD player can play DVD from hard drive *and* support DVD Menu ? tho_x_tran Linux - Software 16 11-16-2006 03:00 PM
How to format to FAT32, and how to mount my FAT32 partition. bonniehandi Linux - Newbie 16 03-05-2006 08:54 PM
hdd type changed from "FAT32" to "win95 FAT32 lba" billgnu Linux - General 1 12-11-2005 05:57 PM
2 fat32 partitions on fbsd5/w2k dual. Can only access one fat32 so far.. mipia *BSD 1 10-06-2003 03:10 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware

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