I have an HP UX server that has a mount point /usr that reached 100% when you use bdf command.
How can I add space (tried removing files, not an option) from either a new disk or existing diskspace from other mount points:
- Without restarting that server
Without Online JS
vgdisplay --- Volume groups --- VG Name /dev/vg00 VG Write Access read/write VG Status available Max LV 255 Cur LV 8 Open LV 8 Max PV 16 Cur PV 1 Act PV 1 Max PE per PV 4356 VGDA 2 PE Size (Mbytes) 32 Total PE 4346 Alloc PE 4148 Free PE 198 Total PVG 0 Total Spare PVs 0 Total Spare PVs in use 0 VG Version 1.0 VG Max Size 2178g VG Max Extents 69696
bdf
output:
/dev/vg00/lvol7 9568256 9568248 8 100% /usr
I had proposed a reboot method that does the following, but rebooting has been denied (for other reasons by the server owner):
lvextend -l 392 /dev/vg00/lvol7
1a. Reboot, login using single user mode: http://www.cyberciti.biz/faq/hpux-booting-into-single-user-mode/
umount /usr
extendfs -F vxfs /dev/vg00/lvol7
mount /dev/vg00/lvol7 /usr
Had done step 1. above, and was stopped before doing 1a) reboot.
Is there a way I can achieve adding more space (say leave /usr at 50% free) space without the reboot?