Operating System - HP-UX
1834939 Members
2104 Online
110071 Solutions
New Discussion

Log size of a VXFS filesystem

 
SOLVED
Go to solution
Bugs_Bnny
Occasional Contributor

Log size of a VXFS filesystem

Hi ,

How can I find the logsize of a vxfs filesystem. I am using HPUX 11.11 with online jfs , vxfs etc.
As of now I use "fstyp -v" to determine the block size , but it does not give me the logsize ..anyhelp is appreciated.
Thanks,
bgs_bnny
Better ask and be a fool once than never to ask and be a fool forever
5 REPLIES 5
A. Clay Stephenson
Acclaimed Contributor
Solution

Re: Log size of a VXFS filesystem

You can use the "-m" option of the mkfs command. This will display the command lime args used to create the filesystem. It does NOT create a new filesystem (unless you omit the -m --- so be careful).

e.g.

mkfs -F vxfs -m /dev/vg00/lvol4

Man mkfs_vxfs for details.
If it ain't broke, I can fix that.
S.K. Chan
Honored Contributor

Re: Log size of a VXFS filesystem

Not sure if this is what you're looking for. Do ..
# man vxtunefs
for details. Basically you can printout all the tunable IO parameters of a vxfs and what's the current value. For example ..
# vxtunefs -f /dev/vg00/lvol5
Uday_S_Ankolekar
Honored Contributor

Re: Log size of a VXFS filesystem

Try with
mkfs -F vxfs -m /dev/vgname/lvolname

-USA..
Good Luck..
Zafar A. Mohammed_1
Trusted Contributor

Re: Log size of a VXFS filesystem

Bugs_Bnny
Occasional Contributor

Re: Log size of a VXFS filesystem

Thanks Guys ..that was very usefull
Better ask and be a fool once than never to ask and be a fool forever