Operating System - HP-UX
1752806 Members
5632 Online
108789 Solutions
New Discussion юеВ

Mount Options Incompatibilty

 
SOLVED
Go to solution
Ankit Grover
Frequent Advisor

Mount Options Incompatibilty

Hi experts,

I am using HP-UX B.11.23 Itanium box. Yesterday, the system was rebooted and some of file systems did not get mounted automatically even though FSTAB entry was there.

I tried mount -a but got following error:
vxfs mount: mount option(s) incompatible with file system /dev/vg_perf_demo/lvperf1

Its entry in FSTAB is:
/dev/vg_perf_demo/lvperf1 /fns/perf1 vxfs rw,suid,nolargefiles,delaylog,datainlog 0 2

Other file systems with similar entries are getting mounted properly. Finally I got it mounted through
mount /dev/vg_perf_demo/lvperf1 /fns/perf1

Can someone please help?
5 REPLIES 5
Jollyjet
Valued Contributor

Re: Mount Options Incompatibilty

The fs probably has the largefiles flag set, and maybe actually has a file >2GB in size on it. That's the only significant option here I think.

HTH

Duncan

I am an HPE Employee
Accept or Kudo
Steven E. Protter
Exalted Contributor

Re: Mount Options Incompatibilty

Shalom,

In 11.11 largefiles/noloargefiles was removed as a valid option.

Try taking that out. The mounter checks the filesystem.

newfs is used at filesystem creation to indicate largefiles and fsadm is used to convert a filesystem.

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
Ankit Grover
Frequent Advisor

Re: Mount Options Incompatibilty

Thanks Jollyjet. The following thread recommended by you gave me the solution:
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=1019138

Duncan,
There was not a single file in entire system with size larger than 10MB. But since the FS was created with LARGEFILES option and FSTAB had NOLARGEFILES option, it was creating incompatibility problems.

Thanks Jollyjet, Duncan & SEP for ur support
Ankit Grover
Frequent Advisor

Re: Mount Options Incompatibilty

The options while creating FS were different from ones in FSTAB file.