- Community Home
- >
- Operating Systems
- >
- HP-UX
- >
- System Administration
- >
- unable to mount DVDrom on HPUX
- Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
unable to mount DVDrom on HPUX
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
10-29-2008 10:09 PM
When I try to mont DVDRom on hpux gives an error message
# mount -F cdfs /dev/dsk/c0t0d0 /cdrom
/dev/dsk/c0t0d0: unrecognized file system
Any inputs?
-Prathibha
Re: unable to mount DVDrom on HPUX
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
10-29-2008 10:24 PM
Re: unable to mount DVDrom on HPUX
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
10-29-2008 10:30 PM
# ioscan -fnC disk
Class I H/W Path Driver S/W State H/W Type Description
==================================================
disk 2 0/0/2/0.0.0.0 sdisk CLAIMED DEVICE TEAC DVD-ROM DW-
224EV
/dev/dsk/c0t0d0 /dev/rdsk/c0t0d0
Re: unable to mount DVDrom on HPUX
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
10-29-2008 10:38 PM
Re: unable to mount DVDrom on HPUX
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
10-29-2008 10:43 PM
# mount -o rr /dev/dsk/c0t0d0 /cdrom
/dev/dsk/c0t0d0: unrecognized file system
Re: unable to mount DVDrom on HPUX
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
10-29-2008 11:17 PM
Re: unable to mount DVDrom on HPUX
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
10-29-2008 11:20 PM
Try this,
#cd /
#mount -F cdfs -o rr /dev/dsk/c0t0d0 /cdrom
Aneesh
Re: unable to mount DVDrom on HPUX
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
10-29-2008 11:36 PM
Firstly, try checking if OS identfies the FS on the CD.
# fstyp /dev/dsk/c0t0d0
If the OS is able to recognize the OS type, you could use the output with "-F" option in "mount" command.
If unable to mount with "-F" specified inspite of OS recognizing the FS type in fstyp command, the chances are that the Media could be bad. If fstyp displays unrecognised FS, then you are out of luck.
Try with following options, just in case
mount -o cdcase /dev/dsk/c0t0d0 /cdrom
or
mount -o rr /dev/dsk/c0t0d0 /cdrom
or
mount -o norr /dev/dsk/c0t0d0 /cdrom
For more details,
man mount_cdfs
Senthil
Re: unable to mount DVDrom on HPUX
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
10-30-2008 12:09 AM
before need do some checking.
bdf
fuser -c /cdrom
pwd
step 1:- ioscan -fnC disk
<
Example :-
========
# ioscan -fnC disk
Class I H/W Path Driver S/W State H/W Type Description
==================================================
disk 0 0/0/2/1.0.16.0.0 sdisk CLAIMED DEVICE TEAC DV-28E-N
/dev/dsk/c0t0d0 /dev/rdsk/c0t0d0
step 2:- mkdir /DVD
step 3:- mount -D cfs
step 4:- insf -e
step 5 :- mount -F cdfs /dev/dsk/c0t0d0 /cdrom
Thanks,
Johnson
Re: unable to mount DVDrom on HPUX
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
10-30-2008 12:24 AM
looks no luck, fstype gives unknown type,
# fstyp /dev/dsk/c0t0d0
unknown_fstyp (no matches)
what else could be done to make that fs up on dvdrom.
-prathibha
Re: unable to mount DVDrom on HPUX
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
10-30-2008 01:02 AM
Changed the media and tried mounting it, using
mount -F cdfs /dev/dsk/c0t0d0 /cdrom worked fine.
Thanks all.
-prathibha
