IF i do a df command. I can only see in the solaris server how much diskspace is being used up. But i want to know how much diskspace a particular solaris zone is occupying
|
|
|
try the du command |
|||
|
Yes - definitely su to root to do this. I was able to run: /usr/xpg4/bin/du -sk -h -x /zonepath/zonename to get the space that was used in a UFS root partition of a zone. For example, /usr/xpg4/bin/du -sk -h -x /zonepath/zonename The -x option when evaluating file sizes, evaluates only those files that have the same device as the file specified by the file operand. The -x operand only seems to work when calling du with this path: /usr/xpg4/bin/du This also worked to display the used space of the zfs attached drives in the zone! We mounted one zfs lun to the path /zoneepath/zonename/data and running this matched the output of "zfs list" for the data file: # /usr/xpg4/bin/du -sk -h -x /zonepath/zoneneame/data If you run #/usr/xpg4/bin/du -sk -h -x /zonepath/zoneneame It will not include NFS attached drives, nor will it include directories that root is not the owner of. I hope this helps! |
|||
|
|
|
The problem I found with these solutions is that they do not take into account directory inheritance. Yes, you will find out how much "space" is under a certain directory. But if you want to actually find out how much extra space a zone is taking, you have to go a different route. Do a
where zonename is the name of the zone. And look at each inherit-pkg-dir line.
Any line that has inheritance is hard-linked to the zone. So you will be double counting against the global zone if you simply do a
Basically you have to count only the directories (excluding /proc, and maybe /tmp) that aren't listed in any
|
||||
|
|
|
Since I tried both John's solution and Pierre-Luc solution, what works for me is:
:
:
|
|||
|
|
|
According to Solaris Operating System Managing ZFS in Solaris 10 Containers the following command would give you the information you require.
|
|||||
|
|
If you install the zone on a zfs volume then you can use the zfs tools ("zfs list") to quickly see how much space has been used. Otherwise you'll have to use "du" as you already discovered (which will be much slower). |
|||
|
|