Operating System - HP-UX
1840213 Members
3619 Online
110162 Solutions
New Discussion

Error -- Extending FS w/ online JFS

 
SOLVED
Go to solution
Joe Profaizer
Super Advisor

Error -- Extending FS w/ online JFS

What's the below mean? Trying to extend it up to 10GB. This is the first time I've run into it. I have extended the vg and lv correctly.

fsadm -F vxfs -b 1048576 /orasys
fsadm: cannot shrink /dev/vg00/rlvol9 - upgraded fs - inodes are currently in u
se.
4 REPLIES 4
James R. Ferguson
Acclaimed Contributor
Solution

Re: Error -- Extending FS w/ online JFS

Hi Joe:

You say "extended", but it appears that you have miscalculated and are actually SHRINKING the filesystem size. Make sure that your computation of blocks was times 1024, not times 1000.

Regards!

...JRF...
Santosh Nair_1
Honored Contributor

Re: Error -- Extending FS w/ online JFS

What is the current size of the lvol (lvdisplay /dev/vg00/rlvol9). It looks like you're actualy trying to shrink the filesystem (1048576 translates into 1024m, i.e. 1GB).

Also, as a side note, you would specify the size in MB for fsadm, i.e. fsadm -F vxfs -b 10240M /orasys.

-Santosh
Life is what's happening while you're busy making other plans
Thierry Poels_1
Honored Contributor

Re: Error -- Extending FS w/ online JFS

hi,

fsadm -F vxfs -b 1048576 /orasys

this requires the NEW TOTAL size of the file system, not the size you want to add.
(or you simply missed one digit)

regards,
Thierry.
All unix flavours are exactly the same . . . . . . . . . . for end users anyway.
Hai Nguyen_1
Honored Contributor

Re: Error -- Extending FS w/ online JFS

Joe,

Your

fsadm -F vxfs -b 1048576 /orasys

should read:

fsadm -F vxfs -b 10485760 /orasys

Regards,
Hai