Linux 查看目錄使用量

Linux 查看目錄使用量

如果硬碟空間滿了,想要查 / 底下是那一個目錄佔了最多的空間可以使用以下指令

# du -s /* | sort -rn

想看TOP 5可以用

# du -s /* | sort -rn | head -5