bdf and du will show the space available in configured logical volumes.
However you may have space available in the volume group which is not assigned to logical volumes.
vgdisplay -v /dev/vg00 replacing vg00 with the name of the volume group that you are interested in, will tell you the number of free Physical Extents (PE), when multiplied by the Physical extent size will tell you the amount of free space in the volume group.
PE Size (Mbytes) 4
Total PE 2046
Alloc PE 1463
Free PE 583
In this case 4*583=2332MB free
You may also have disk(s) on your system which have not been assigned to volume groups.
#ioscan -funC disk
will tell you the disks that your system can see.
#diskinfo /dev/rdsk/c*t*d*
replacing the *'s will tell you the size of the disks that the system can see.
#strings /etc/lvmtab will tell you which disks are assigned to which volume groups as will vgdisplay -v output
Taking away from ioscan output those disks used and those in use by lvm and those disks which are raw(some databases use raw), which can be identified from fstab, you will know whether there are any disks on your system which are not in use.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.