linux中查看磁盘空间

摘自余洪春《构建高可用Linux服务器》

   查看总大小及分区:fdisk -l (需要管理员权限)

   查看各个分区的已用/可用空间:df -h

   查看某个文件或目录的大小: du -s ./workspace  找出最占空间的10个文件或目录:du -cks *|sort -rn|head -n 10

Leave a Comment

Your email address will not be published.

This site uses Akismet to reduce spam. Learn how your comment data is processed.