Operating System - HP-UX
1833198 Members
2745 Online
110051 Solutions
New Discussion

Re: mount - no version numbers

 
SOLVED
Go to solution
Fred Martin_1
Valued Contributor

mount - no version numbers

Using HP-UX 10.20, when I mount a CD-ROM, I see file names with version numbers, like:

README.TXT;1

Isn't there an option available to remove the version? I can't get to the files. There is an install script on the CD that is failing for the same reason.

Fred
fmartin@applicatorssales.com
6 REPLIES 6
James R. Ferguson
Acclaimed Contributor

Re: mount - no version numbers

Hi Fred:

It sounds like you need to do a PFS-style mount of the CDROM. Knowledge Base document #KBAN00000252 has good instructions for doing this.

...JRF...
Bill McNAMARA_1
Honored Contributor

Re: mount - no version numbers

I've seen this when mounting cds created on a windows system that are wrapped iso filesystems.

Later,
Bill
It works for me (tm)
MANOJ SRIVASTAVA
Honored Contributor
Solution

Re: mount - no version numbers

Hi Fred

Use pfs_mount as :

pfs_mount -x lower_case -x no_version /dev/dsk/cXtYdZ /test

, or you can also do man pages .

mount -f cdfs -o cdcase /dev/dsk/cXtYdZ /test
is also a solution .


Manoj Srivastava
A. Clay Stephenson
Acclaimed Contributor

Re: mount - no version numbers

Hi Fred,

pfs_mount will do it but you can also

mount -F cdfs -o cdcase /dev/dsk/cxtydz /cdrom

to remove the version number.

Regards, Clay
If it ain't broke, I can fix that.
Patrick Wallek
Honored Contributor

Re: mount - no version numbers

I would try the 'mount -f cdfs -o cdcase /dev/dsk/c?t?d? /cdrom' first. That should work for you. I try to avoid pfs_mount if I can. It's a pain to deal with, at least for me.
Fred Martin_1
Valued Contributor

Re: mount - no version numbers

Here's what worked:

mount -F cdfs -o cdcase /dev/dsk/c?t?d? /cdrom

The -o option is what was needed.
fmartin@applicatorssales.com