Chinaunix首页 | 论坛 | 博客
  • 博客访问: 3425755
  • 博文数量: 198
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 7246
  • 用 户 组: 普通用户
  • 注册时间: 2013-01-23 18:56
个人简介

将晦涩难懂的技术讲的通俗易懂

文章分类

全部博文(198)

文章存档

2023年(9)

2022年(4)

2021年(12)

2020年(8)

2019年(18)

2018年(19)

2017年(9)

2016年(26)

2015年(18)

2014年(54)

2013年(20)

分类: LINUX

2014-06-09 23:49:49

 为什么dfdu所查看到的已使用的磁盘容量不同?
                               ——lvyilong316

1. du

The du user command gives the number of kilobytes contained in all files and, recursively, directories within each specified directory or file (filename). (针对的文件或目录)

(1) 使用方式

直接输入du

不加任何参数时,du会分析当前所在目录的文件与目录所占用的硬盘空间。但是,实际显示时,仅会显示目录容量(不显示文件容量),此外输出的数值数据为1k大小的单位。如:

我们看到在VMShare目录下执行du,结果仅将VMShare中子目录的容量列出来,而没有列出文件的容量。注意:最后一行显示当前目录的容量并不等于上面所有容量的加和,正是因为最后一行的容量还包含了没有显示出的文件所占的容量。

我们在VMShare目录下创建一个新目录Test,并将ServerClient目录复制一份到Test中,然后进入Test中运行du查看结果,如下:

我们看这个时候最后一行所列结果就等于上面两行容量的加和了,原因是因为Test目录中没有直接文件。我们在退回VMShare执行du,结果如下:

根据这个结果我们能得到如下结论:

a. 如果有子目录,du会递归遍历子目录,统计列出子目录的大小。

b. 观察结果的567行,我们发现du会将子目录的容量重复计算,所以导致最终结果(最后一行的容量)小于之前所有子目录容量的加和。

-S 

-S(大写),则目录的容量不再包含子目录的容量,如:

我们发现添加-STest的容量变为0,这是因为Test中没有直接文件,只有目录。

-h

以人们较容易读的容量格式(K/G/M)显示。如:

-s

只列出当前目录的容量(单位K,不包括子目录的统计。如:

(2) 原理
    du命令会对待统计文件逐个调用fstat这个系统调用(有子目录会递归调用),获取文件大小。运行较慢

int fstat(int fd, struct stat *buf);

fd 规定要检查的打开文件的

buf struct stat的变量

查看的是inode信息。

2. df

The df user command displays the following information:
  amount of disk space occupied by currently mounted file systems ;
  the amount of used and available space ;
  how much of the file system's total capacity has been used; (针对的是文件系统)

(1) 用法

  不加任何参数

linux下如果df不加任何参数,那么默认会将系统内的所有文件系统信息(不含特殊的内存内的特殊文件系统和swap),都以1KB的容量列出来。如下图所示。

-h

以人们较易阅读的GBMBKB等合适自行显示。如图:

注意:Used的容量和Avail的容量相加要小于文件系统的总容量(Size,这是因为文件系统分配其中的一些磁盘块用来记录它自身的一些数据,如i节点,磁盘分布图,间接块,超级块等。这些数据对大多数用户级的程序来说是不可见的,通常称为Meta Data

目录或文件做参数

df后加上目录或文件时,df会自动分析该目录或文件所在的文件系统,并将该文件系统的信息列出来。如下图所示。

注:VMSharewindowslinux的共享文件夹。

说明:如果除了Meta Data所占空间,Used空间已达上限,则只有超级用户可以再创建文件,分配新的block,这将导致当前文件系统的使用率超过百分之百。

(2) 原理

df命令使用的事statfs这个系统调用,直接读取分区的超级块信息获取分区使用情况,所以执行速度很快。
int fstatfs(int fd, struct statfs *buf);

fd: 需要查询信息的文件系统的

buf:以下,用于储存文件系统相关的信息

struct statfs {

long f_type; /* 文件系统类型 */

long f_bsize; /* 经过优化的传输块大小 */

long f_blocks; /* 文件系统总数 */

long f_bfree; /* 可用块数 */

long f_bavail; /* 可获取的块数 */

long f_files; /* 文件结点总数 */

long f_ffree; /* 可用文件结点数 */

fsid_t f_fsid; /* 文件系统标识 */

long f_namelen; /* 文件名的最大长度 */

};

df查看的superblock的信息。

3. 为什么dudf有时列出的磁盘空间会不同?  

原因一    

du 命令只计算被文件占用的空间。不计算文件系统metadata 占用的空间,如inodes, inode maps, 或者disk maps

原因二

    当一个文件被执行删除操作,但是删除前有其他进程持有该文件的句柄时,由于此时该文件所占用的block并没有被释放,所以df仍然会统计该文件的容量,但是du不会再遍历到该文件,所以不会将该文件所占的空间统计在内。

结论:对已使用的空间统计,df的结果要大于du的结果。

4. 接下来是一篇很流行的文档

Document Id: 26928Synopsis: du and df Differences (originally published 8/91) 
Update date: 2001-05-13Description: du and df Differences 
-- --- -- ----------- 
This article explains how reporting disk usage du and reporting free disk space 
on file systems df may show different numbers. 
du 
-- 
The du user command gives the number of kilobytes contained in all files and, 
recursively, directories within each specified directory or file (filename). 
If filename is missing, `.' (the current directory) is used. A file which 
has multiple links to it is only counted once. 
EXAMPLE: 
system % du 
5 ./jokes 
33 ./squash 
44 ./tech.papers/lpr.document 
217 ./tech.papers/new.manager 
401 ./tech.papers 
144 ./memos 
80 ./letters 
388 ./window 
93 ./messages 
15 ./useful.news 
1211 . 

Note that the last number, 1211 is the grand total (in kilobytes) for the 
directory. 

df 
-- 
The df user command displays the following information: 
amount of disk space occupied by currently mounted file systems 
the amount of used and available space 
how much of the file system's total capacity has been used 
Used without arguments, df reports on all mounted file systems. 

EXAMPLE: 
system % df 
Filesystem kbytes used avail capacity Mounted on 
/dev/ip0a 7445 4714 1986 70% / 
/dev/ip0g 42277 35291 2758 93% /usr 

Note: used plus avail is less than the amount of space in the file system 
(kilobytes) because the system reserves a fraction of the space in the file 
system to allow its allocation routines to work well. The amount reserved is 
typically about 10%. (This may be adjusted using the tunefs command. Refer to 
the man pages on tunefs( for more information.) When all the space on a file 
system, except for this reserve, is in use, only the super-user can allocate 
new files and data blocks to existing files. This, however, may cause the file 
system to be over allocated. When a file system is over allocated in this way, 
df may report that the file system is more than 100% utilized. 

If arguments to df are disk partitions (for example, /dev/ip0as or path names), 
df produces a report on the file system containing the named file. Thus, df 
shows the amount of space on the file system containing the current directory. 

Problem Definition 
------- ---------- 

This section gives the technical explanation of why du and df sometimes report 
different totals of disk space usage. 

When a program that is running in the background writes to a file while the 
process is running, the file to which this process is writing is deleted. 
Running df and du shows a discrepancy in the amount of disk space usage.  The 
df command shows a higher value. 

Explanation Summary 
----------- ------- 

When you open a file, you get a pointer.  Subsequent writes to this file 
references this file pointer.  The write call does not check to see if the file 
is there or not.  It just writes to the specified number of characters starting 
at a predetermined location.  Regardless of whether the file exist or not, disk 
blocks are used by the write operation. 

The df command reports the number of disk blocks used while du goes through the 
file structure and and reports the number of blocks used by each directory.  As 
far as du is concerned, the file used by the process does not exist, so it does 
not report blocks used by this phantom file.  But df keeps track of disk blocks 
used, and it reports the blocks used by this phantom file.

The difference is that whenever an application has an 
open file, but the file is already deleted, then it is counted in the df 
output (because the space is certainly not free) but not in du (because 
it is not being used by a file). 

阅读(8780) | 评论(2) | 转发(6) |
给主人留下些什么吧!~~

叶子的背叛2014-07-22 10:18:57

很敬佩楼主的学习态度。

niao59292014-06-10 22:55:00

理解透彻才是真正的学习呀!!!