Unix: Which file is consuming the mount point
du -ak . | sort -n
or just the directory , ignoring other mounted filesystems:
du -akx . | sort -n <-- this gives the largest files , which is most valuable
du -sk * | sort -n <-- this gives the largest folders
Comments
Post a Comment