Operating System - HP-UX
1838490 Members
2881 Online
110126 Solutions
New Discussion

Re: vxfs mount: mount option(s) incompatible with file system /dev/vg00/lvol11

 
Erich_1
Advisor

vxfs mount: mount option(s) incompatible with file system /dev/vg00/lvol11

Hi IT´s

I had plugged in an new disk on HP UX 11i with the following procedure:

pvcreate /dev/rdsk/c2t2d0
vgextend vg00 /dev/dsk/c2td0
lvextend -L 80000 /dev/vg00/lvol11 /dev/dsk/c2t2d0

fsadm -F vxfs -b 80000 /dev/vg00/lvol11
and then i become the following message:
fsadm: You don´t have a license to run this program.

if i make "mount -a" the lvol11 becomes the error: "vxfs mount: mount option(s) incompatible with file system /dev/vg00/lvol11"

What can i do to perform the Volume-Extens
19 REPLIES 19
Johan Lorimier
Frequent Advisor

Re: vxfs mount: mount option(s) incompatible with file system /dev/vg00/lvol11

Hi,
you have to dismount your file system, extend it by :
extendfs /dev/vg00/rlvol11
and then remount it.

Johan
Robert-Jan Goossens
Honored Contributor

Re: vxfs mount: mount option(s) incompatible with file system /dev/vg00/lvol11

Hi Erik,

Is there a typo in your fstab ?

# cat /etc/fstab | grep lvol11

Looks like you don't have online JFS, you will need to unmount your fs and run extendfs.

Regards,
Robert-Jan
T G Manikandan
Honored Contributor

Re: vxfs mount: mount option(s) incompatible with file system /dev/vg00/lvol11

Just do a

vxlicense -p

and check whether the license information is valid
eran maor
Honored Contributor

Re: vxfs mount: mount option(s) incompatible with file system /dev/vg00/lvol11

Hi

i will not repeat what evey body said but remember , when doing a pvcreate on a new disk do a pvcreate -f , to erase any data that was on the disk .

from your message it seem that you dont have onlinejfs install on this computer ,
you just need to umount the filesystem do a extendfs and them mount the file system .

eran maor
love computers
Cheryl Griffin
Honored Contributor

Re: vxfs mount: mount option(s) incompatible with file system /dev/vg00/lvol11

Looks like you need to enable the license:
# /sbin/fs/vxfs3.3/vxlicense -c
# /sbin/fs/vxfs3.3/vxenablef -a

"Downtime is a Crime."
Erich_1
Advisor

Re: vxfs mount: mount option(s) incompatible with file system /dev/vg00/lvol11

when i make "umount /dev/vg00/lvol11" then a message appears:
"umount /dev/vg00/lvol11
umount: cannot find /dev/vg00/lvol11 in /etc/mnttab
cannot unmount /dev/vg00/lvol11"

if i show the mnttab there is no entry with lvol11 in their.

what can i also do ?
T G Manikandan
Honored Contributor

Re: vxfs mount: mount option(s) incompatible with file system /dev/vg00/lvol11

Try doing
#vxenablef -a
Robert-Jan Goossens
Honored Contributor

Re: vxfs mount: mount option(s) incompatible with file system /dev/vg00/lvol11

Hi,

umount the filesystem.
/root# cat /etc/fstab | grep dbappl
/dev/vg01/lvol4 /app/oracle/dbappl vxfs log,nodatainlog,largefiles,rw,suid 0 2

# umount /app/oracle/dbappl

regards,
Robert-Jan
Erich_1
Advisor

Re: vxfs mount: mount option(s) incompatible with file system /dev/vg00/lvol11

this apears the same error:

umount /oradata
umount: cannot find /oradata in /etc/mnttab
cannot unmount /oradata
Robert-Jan Goossens
Honored Contributor

Re: vxfs mount: mount option(s) incompatible with file system /dev/vg00/lvol11

Erich,

is oradata mounted ? Is it part mount over mount like /app/oracle/oradata/RMAN/d03 ?

Could you give the output from

# cat /etc/fstab | grep lvol11

Regards,
Robert-Jan
Fred Ruffet
Honored Contributor

Re: vxfs mount: mount option(s) incompatible with file system /dev/vg00/lvol11

try to issue "mount | grep /dev/vg00/lvol11" to see if it's really mounted.

Regards,

Fred
--

"Reality is just a point of view." (P. K. D.)
Erich_1
Advisor

Re: vxfs mount: mount option(s) incompatible with file system /dev/vg00/lvol11

Robert-Jan

Oradata is not mounted and the output from cat /etc/fstab | grep lvol11 is "/dev/vg00/lvol11 /oradata vxfs nolog,nodatainlog,largefiles 0 2"
Robert-Jan Goossens
Honored Contributor

Re: vxfs mount: mount option(s) incompatible with file system /dev/vg00/lvol11

# extenfs -F vxfs /dev/vg01/rlvol11

# mount /oradata

Robert-Jan
Bharat Katkar
Honored Contributor

Re: vxfs mount: mount option(s) incompatible with file system /dev/vg00/lvol11

I think you don't have license for fsadm (Online JFS). You have to use
#extendfs
as suggested above and then mounting the filesystem.
You need to know a lot to actually know how little you know
Fred Ruffet
Honored Contributor

Re: vxfs mount: mount option(s) incompatible with file system /dev/vg00/lvol11

Your message "mount option(s) incompatible" may come from the fact that it largefiles were not enabled, and you try to mount with them.
try to do :
fsadm -o largefiles /dev/vg00/lvol11
(with /dev/vg00/lvol11 not mounted if you don't have online JFS)

regards,

Fred
--

"Reality is just a point of view." (P. K. D.)
Erich_1
Advisor

Re: vxfs mount: mount option(s) incompatible with file system /dev/vg00/lvol11

your propositions appears:

>fsadm -o largefiles /dev/vg00/lvol11
vxfs fsadm: /dev/vg00/lvol11 is not the root inode of a vxfs file sytem

>extendfs -F vxfs /dev/vg00/rlvol11
vxfs extendfs: file system is already at maximum device capacity.

>mount /oradata
vxfs mount: mount option(s) incompatible with file system /dev/vg00/lvol11
Robert-Jan Goossens
Honored Contributor

Re: vxfs mount: mount option(s) incompatible with file system /dev/vg00/lvol11

# fsadm -o largefiles /dev/vg00/rlvol11

note the r.

Erich_1
Advisor

Re: vxfs mount: mount option(s) incompatible with file system /dev/vg00/lvol11

thank you Robert-Jan,
it works

i make:

# fsadm -o largefiles /dev/vg00/rlvol11
# extendfs -F vxfs /dev/vg00/rlvol11

and lvol11 is in the bdf-list


thx to all administrators
Navin Bhat_2
Trusted Contributor

Re: vxfs mount: mount option(s) incompatible with file system /dev/vg00/lvol11

Hello Erich,
Please take some time to assign points to those you helped you out.

Regards,