Operating System - HP-UX
1823131 Members
3418 Online
109646 Solutions
New Discussion юеВ

Re: Cannot mount DVD device

 
SOLVED
Go to solution
Musa I. S.
Frequent Advisor

Cannot mount DVD device

I cannot locate my DVD drive. I need to install an application. find attached output from ioscan.
24 REPLIES 24
OFC_EDM
Respected Contributor

Re: Cannot mount DVD device

I believe its c0t0d0 TEAC DV-28E-C
The Devil is in the detail.
Robert-Jan Goossens
Honored Contributor

Re: Cannot mount DVD device

Hi,

# mkdir /cdrom

# mount /dev/dsk/c0t0d0 /cdrom
or
# mount -F cdfs /dev/dsk/c0t0d0 /cdrom

use
# umount /cdrom
to unmount the cdrom

Regards,
Robert-Jan
Steven E. Protter
Exalted Contributor

Re: Cannot mount DVD device

Shalom,

disk 0 0/0/3/0.0.0.0 sdisk CLAIMED DEVICE TEAC DV-28E-C

/dev/dsk/c0t0d0 /dev/rdsk/c0t0d0

Definitely it. Interesting brand of drive. This is the standard that came with the system?

If there is media you should be able to mount it using /dev/dsk/c0t0d0

Post error message please.

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
melvyn burnard
Honored Contributor

Re: Cannot mount DVD device

Well I can see it:

disk 0 0/0/3/0.0.0.0 sdisk CLAIMED DEVICE TEAC DV-28E-C
/dev/dsk/c0t0d0 /dev/rdsk/c0t0d0
My house is the bank's, my money the wife's, But my opinions belong to me, not HP!
Musa I. S.
Frequent Advisor

Re: Cannot mount DVD device

Hello,
below is the error i get.

moon2:/#mount /dev/dsk/c0t0d0 /cdrom
mount: cannot access -specific mount command
Torsten.
Acclaimed Contributor

Re: Cannot mount DVD device

This slime line IDE drive is standard for some server models.

What kind of CD you're trying to mount?

Hope this helps!
Regards
Torsten.

__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.

__________________________________________________
No support by private messages. Please ask the forum!

If you feel this was helpful please click the KUDOS! thumb below!   
Musa I. S.
Frequent Advisor

Re: Cannot mount DVD device

A DVD. I'm trying to install ignite-ux.
Dennis Handly
Acclaimed Contributor

Re: Cannot mount DVD device

>#mount /dev/dsk/c0t0d0 /cdrom

Unless you already have an entry in /etc/fstab, you'll need to supply zillions of options to mount.
Why not use SAM to do this and leave an entry in fstab?
Torsten.
Acclaimed Contributor

Re: Cannot mount DVD device

If this DVD is the install DVD, try

#mount -r /dev/dsk/c0t0d0 /cdrom

Hope this helps!
Regards
Torsten.

__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.

__________________________________________________
No support by private messages. Please ask the forum!

If you feel this was helpful please click the KUDOS! thumb below!   
Musa I. S.
Frequent Advisor

Re: Cannot mount DVD device

both mount -r and SAM gave me thesame error as before.
Torsten.
Acclaimed Contributor

Re: Cannot mount DVD device

>> "mount: cannot access -specific mount command"

Are you root?

Hope this helps!
Regards
Torsten.

__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.

__________________________________________________
No support by private messages. Please ask the forum!

If you feel this was helpful please click the KUDOS! thumb below!   
Musa I. S.
Frequent Advisor

Re: Cannot mount DVD device

yes i am root
Robert-Jan Goossens
Honored Contributor

Re: Cannot mount DVD device

try these

# mount -F cdfs -o cdcase /dev/dsk/c0t0d0 /cdrom

# mount -o ro /dev/dsk/c0t0d0 /cdrom

Robert-Jan
Musa I. S.
Frequent Advisor

Re: Cannot mount DVD device

Didn't work. I got the errors below



moon2:/#mount -F cdfs -o cdcase /dev/dsk/c0t0d0 /cdrom
mount: cdfs : Invalid argument
usage: mount [-l][-v|-p]
mount [-F FStype][-eQ] -a
mount [-F FStype][-eQrV][-o specific_options]
{ special | directory }
mount [-F FStype][-eQrV][-o specific_options]
special directory

moon2:/#mount -o ro /dev/dsk/c0t0d0 /cdrom
mount: cannot access -specific mount command
Torsten.
Acclaimed Contributor

Re: Cannot mount DVD device

I think your "mount" is not the command - it's another script.

Try

# whereis mount
# whence mount

and post the results.

Try

/usr/sbin/mount -r /dev/dsk/c0t0d0 /cdrom

instead of only "mount".

Hope this helps!
Regards
Torsten.

__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.

__________________________________________________
No support by private messages. Please ask the forum!

If you feel this was helpful please click the KUDOS! thumb below!   
Musa I. S.
Frequent Advisor

Re: Cannot mount DVD device

I tried it, and it still didn't work.

moon2:/#whereis mount
mount: /usr/sbin/mount /sbin/mount /opt/VRTS/bin/mount /usr/share/man/man1m.Z/mo
unt.1m /usr/share/man/man2.Z/mount.2 /usr/share/man/man3.Z/mount.3n
moon2:/#whence mount
/usr/sbin/mount

moon2:/#/usr/sbin/mount /dev/dsk/c0t0d0 /cdrom
mount: cannot access -specific mount command
moon2:/#
Dennis Handly
Acclaimed Contributor

Re: Cannot mount DVD device

>it still didn't work.

Have you tried using SAM?
Musa I. S.
Frequent Advisor

Re: Cannot mount DVD device

SAM gave me the same error
Anka
Trusted Contributor
Solution

Re: Cannot mount DVD device

the problem was due to an error on the cdfs kernel module

check with:
#kcmodule -v cdfs

you may see the following:

"State unused (because of an error)"

If so, loading the cdfs kernel module should corrected the error in the kcmodule output, as well as the issue with mount
Musa I. S.
Frequent Advisor

Re: Cannot mount DVD device

what should i do next?

moon2:/#kcmodule -v cdfs
Module cdfs (0.1.0)
Description CD File System
State unused (because of an error)
State at Next Boot auto (best state)
Capable auto static loaded unused
Depends On interface HPUX_11_23:1.0
Anka
Trusted Contributor

Re: Cannot mount DVD device

Change the module to loaded:

command line:

#kcmodule -B cdfs=loaded

or do it with SAM, as you feel more comfortable...
Musa I. S.
Frequent Advisor

Re: Cannot mount DVD device

Hurray!!!!!!!! DVD mounted. pls view output below. how do i make the change permanent?

moon2:/#kcmodule -B cdfs=loaded
WARNING: The currently running configuration is not configured to be used at next boot. So, the requested changes will be discarded
when the system reboots.
* The automatic 'backup' configuration has been updated.
* The requested changes have been applied to the currently
running system.
Module State Cause Notes
cdfs (before) unused error auto-loadable, unloadable
(now) loaded explicit
Anka
Trusted Contributor

Re: Cannot mount DVD device

You can set it to static or auto.
See the kcmodule(1m) there is a short description of the different states.
Musa I. S.
Frequent Advisor

Re: Cannot mount DVD device

Thank you so much.