您的位置:首页 > 运维架构 > Linux

Linux disk space analysis

2011-06-10 12:09 197 查看
-- unix df du command
using

df -option [block device|directory|file|resource]

df display the number of free disk blocks and free files.
df -a
reports all the file system

df -b
print the total number of kilobytes free (only this column information)

df -h

display the information in a more human readable format.

df -k

have a column information about the free blocks in 1024 bytes.

-- unix du command

using

du -option [file .. or directory]

summarize disk usage.

if the du command used without any option ,it will display the space that
directory occupied (not including the file)

du -a

display the current directory occupied space(Including subdir and files)

du -s

just display the total space occupied for the current direcory.

du -h

display in a more human readable format
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: