LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
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 03-03-2008, 01:11 AM   #1
jshort1
LQ Newbie
 
Registered: Mar 2008
Distribution: Debian, Red Hat
Posts: 2

Rep: Reputation: 0
DVD RAM particular disk is not mounting while another type is


I have two types of DVD RAM media. One type mounts and the other doesn't.
The successful media which mounts is Verbatim DVD-RAM 9.4 GB, up to 3X speed rewritable Type 4. The unsuccessful media is Maxell 9.4 GB - Type 4, up to 3X speed rewritable. I've tried to mount four different Maxell disks so I don't think it is a defective disk. Is it possible the disk is just incompatible with the drive?

I tried checking with the LG site but they seemed to only have information for Windows OS.

The DVD drive is an LG GSA-H10N.

The Linux version information is
Linux version 2.6.12-1.1378_FC3
gcc version 3.4.4 20050721 (Red Hat 3.4.4-2)
#1 Wed Sep 14 04:24:31 EDT 2005


command:
mount -t vfat /dev/hdd /media/cdrecorder4

results:
mount: wrong fs type, bad options, bad superblock on /dev/hdd, or too many mounted file systems

command: dmesg | tail

results:
end_request: I/O error, dev hdd, sector 1384
UDF-fs INFO UDF 0.9.8.1 (2004/29/09) Mounting volume 'UDF MX120', timestamp 2001/11/03 02:18 (1e20)
hdd: drive_cmd: status=0x51 { DriveReady SeekComplete Error }
hdd: drive_cmd: error=0x04 { AbortedCommand }
ide: failed opcode was: 0xec
hdd: drive_cmd: status=0x51 { DriveReady SeekComplete Error }
hdd: drive_cmd: error=0x04 { AbortedCommand }
ide: failed opcode was: 0xec
FAT: bogus number of reserved sectors
VFS: Can't find a valid FAT filesystem on dev hdd.


command:
Sudo hdparm –I /dev/hdd

results:
/dev/hdd:

ATAPI CD-ROM, with removable media
Model Number: HL-DT-ST DVDRAM GSA-H10N
Serial Number: FC189C575EAF
Firmware Revision: JL10
Standards:
Likely used CD-ROM ATAPI-1
Configuration:
DRQ response: 50us.
Packet size: 12 bytes
Capabilities:
LBA, IORDY(can be disabled)
DMA: mdma0 mdma1 mdma2 udma0 udma1 *udma2
Cycle time: min=120ns recommended=120ns
PIO: pio0 pio1 pio2 pio3 pio4
Cycle time: no flow control=120ns IORDY flow control=120ns
HW reset results:
CBLID- above Vih
Device num = 1


Any ideas why one disk type mounts and not another type?
 
Old 03-03-2008, 06:22 AM   #2
Lenard
Senior Member
 
Registered: Dec 2005
Location: Indiana
Distribution: RHEL/CentOS/SL 5 i386 and x86_64 pata for IDE in use
Posts: 4,790

Rep: Reputation: 58
Quote:
command:
mount -t vfat /dev/hdd /media/cdrecorder4

results:
mount: wrong fs type, bad options, bad superblock on /dev/hdd, or too many mounted file systems

command: dmesg | tail

results:
end_request: I/O error, dev hdd, sector 1384
UDF-fs INFO UDF 0.9.8.1 (2004/29/09) Mounting volume 'UDF MX120', timestamp 2001/11/03 02:18 (1e20)
The format of the media is not vfat it is UDF, try somethig like;

mount -t auto /dev/hdd /media/cdrecorder4

If the device is in /etc/fstab then make sure the entry looks something like;

Code:
/dev/hdd               /media/cdrecorder4             auto    noauto,users,rw 0 0
The you can just use for example: mount /media/cdrecorder4

.
 
Old 03-07-2008, 09:40 AM   #3
jshort1
LQ Newbie
 
Registered: Mar 2008
Distribution: Debian, Red Hat
Posts: 2

Original Poster
Rep: Reputation: 0
Thanks for the reply.

Here's the command and the error resulting:

[root@cstt ~]# mount -t auto /dev/hdd /media/cdrecorder4
mount: you must specify the filesystem type
[root@cstt ~]# dmesg |tail
FAT: utf8 is not a recommended IO charset for FAT filesystems, filesystem will be case sensitive!
usb 1-5: USB disconnect, address 3
FAT: bogus number of reserved sectors
VFS: Can't find a valid FAT filesystem on dev hdd.
FAT: bogus number of reserved sectors
VFS: Can't find a valid FAT filesystem on dev hdd.
FAT: bogus number of reserved sectors
VFS: Can't find a valid FAT filesystem on dev hdd.
FAT: bogus number of reserved sectors
VFS: Can't find a valid FAT filesystem on dev hdd.
[root@cstt ~]#
 
Old 03-07-2008, 10:27 AM   #4
Lenard
Senior Member
 
Registered: Dec 2005
Location: Indiana
Distribution: RHEL/CentOS/SL 5 i386 and x86_64 pata for IDE in use
Posts: 4,790

Rep: Reputation: 58
If the correct /etc/fstab entry for the DVD drive is in place then one only needs to type;

mount /media/cdrecorder4

Or if you insist one need to be exact, in the case of the UDF DVD;

mount -t udf /dev/hdd /media/cdrecorder4

Please review the man page for mount; man mount

Here's a snippet;
Code:
       -t vfstype
              The  argument following the -t is used to indicate the file sys-
              tem type.  The file system types which are  currently  supported
              include:  adfs,  affs,  autofs,  cifs,  coda,  coherent, cramfs,
              debugfs, devpts, efs, ext, ext2, ext3, hfs, hpfs, iso9660,  jfs,
              minix,  msdos,  ncpfs, nfs, nfs4, ntfs, proc, qnx4, ramfs, reis-
              erfs, romfs, smbfs, sysv, tmpfs, udf, ufs, umsdos, usbfs,  vfat,
              xenix,  xfs,  xiafs.   Note  that  coherent,  sysv and xenix are
              equivalent and that xenix and coherent will be removed  at  some
              point  in  the  future  -- use sysv instead. Since kernel version
              2.1.21 the types ext and xiafs do not  exist  anymore.  Earlier,
              usbfs was known as usbdevfs.
 
  


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
How to mark bad sectors on a DVD-RAM disk? garydale Linux - Hardware 1 12-21-2007 08:21 PM
Can't get write permission to dvd-ram disk deliberate Mandriva 2 07-26-2007 12:50 PM
gobbledegook on dvd ram disk under Fedora ptay1685 Linux - Software 0 11-11-2006 06:17 PM
Auto-mounting and DVD-RAM petn-randall Debian 1 02-01-2005 01:02 PM
Mounting a DVD-RAM disc as non-root jryoung Linux - Newbie 1 07-08-2004 07:56 PM

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

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