Monday, March 12, 2012
aix disk space
# find / -xdev -type file -ls | sort +rn6 | head
Then do research on each of the larger
files, and find out what you need to do to
trim/truncate them.
lspv shows the physical volume attrs
also.. to change size of the filesystem
chfs -asize=+1G /some/FS
and for jfs2, you can also decrease size:
chfs -asize=-500M /file/system
without + or -, you set the desired size:
chfs -asize=2G /some/other/FS
Then do research on each of the larger
files, and find out what you need to do to
trim/truncate them.
lspv shows the physical volume attrs
also.. to change size of the filesystem
chfs -asize=+1G /some/FS
and for jfs2, you can also decrease size:
chfs -asize=-500M /file/system
without + or -, you set the desired size:
chfs -asize=2G /some/other/FS