1834228 Members
2588 Online
110066 Solutions
New Discussion

Enlarge fs

 
Dario_4
Frequent Advisor

Enlarge fs

Hi alls,

I have this problem:

dev/vg00/lv_appl 31236096 31137676 96884 100% /fs_appl

This fs is full. I have to enlarge it.

vgdisplay -v |more

...
Max PE per PV 4350
VGDA 8
PE Size (Mbytes) 8
Total PE 17360
Alloc PE 17068
Free PE 292
....

When I try to enlarge it of 1 giga I read this error:

[h3mih003]/# lvextend -L 4096 /dev/vg00/lv_appl
lvextend: "LogicalExtentsNumber" is not bigger than current setting.
[h3mih003]/# lvextend -L 32768 /dev/vg00/lv_appl
lvextend: Not enough free physical extents available.
Logical volume "/dev/vg00/lv_appl" could not be extended.
Failure possibly caused by strict allocation policy
[h3mih003]/# lvextend -L 16384 /dev/vg00/lv_appl
lvextend: "LogicalExtentsNumber" is not bigger than current setting.
[h3mih003]/# lvextend -L 16384 /dev/vg00/lv_appl
lvextend: "LogicalExtentsNumber" is not bigger than current setting.

Cuold someone help me ?

Thanks in advance
3 REPLIES 3
Paula J Frazer-Campbell
Honored Contributor

Re: Enlarge fs

Hi

Try:-

lvextend -l 17360 /dev/vg00/lv_appl


HTH

Paula
If you can spell SysAdmin then you is one - anon
Steve Steel
Honored Contributor

Re: Enlarge fs

Hi

http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x9fe35a3e6e0bd6118ff40090279cd0f9,00.html

should help


steve Steel
If you want truly to understand something, try to change it. (Kurt Lewin)
Dario_4
Frequent Advisor

Re: Enlarge fs

Ok, now it works.
I used the "-l" option (size in block)

Thanks a lot to all