fdisk : 磁盘分区。fdisk -l
df : 检查文件系统的磁盘空间占用情况。df -h
du : 查看磁盘使用情况。 du -s * | sort -nr
du和df查看的结果为什么会有很大的差异:
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.
相关推荐
在linux下,有时候为了获取磁盘厂商名称,以及相关信息,以利用这些信息对不同的磁盘做相应的处理。本代码实例调用了一个IOCTL命令读取磁盘厂商信息,以及磁盘序列号,并打印出来。在2.6版本上测试过!
Linux 中查看 IO 相关命令 Linux 操作系统中,查看 IO 状态的命令非常重要,特别是在服务器出现异常情况时。以下是查看 Linux 服务器硬盘 IO 访问负荷的方法: 1. 使用 Top 命令 Top 命令可以显示当前系统的实时...
通过这个命令,用户可以查看与硬盘相关的系统信息,例如硬盘的型号、序列号、接口类型等。这对于诊断硬盘问题或了解硬盘的基本配置非常有用。例如,如果硬盘出现异常,`dmesg`可以帮助定位是硬件问题还是驱动程序的...
本文将详细介绍一系列用于查看Linux系统硬件信息的命令,帮助用户掌握如何获取诸如CPU、内存、硬盘、USB设备等关键硬件组件的信息。 #### 常用命令介绍 ##### 1. 查看CPU信息 - **命令**: `cat /proc/cpuinfo` - *...
本文将详细介绍Linux环境下用于查看硬盘信息的相关命令及其用法,帮助用户更好地理解并应用这些实用工具。 ### Linux下查看硬盘信息的主要命令 #### 1. df 命令 `df`(disk free)命令用于显示文件系统的磁盘空间...
本文将详细介绍 Linux 服务器性能查看命令,包括查看操作系统及硬件信息、CPU 信息、Mem 信息、磁盘信息、网卡信息、主板信息、机器所有硬件信息等多个方面。 1. 查看服务器操作系统及硬件信息(压力测试前) 在...
以下是一些在Linux环境下获取硬盘序列号的方法: 1. 使用`hdparm`命令: `hdparm`是一个用于配置和查询IDE/ATA硬盘的工具。通过其 `-I` 或 `--id` 参数,我们可以获取到硬盘的详细信息,其中包括序列号。例如,...
linux 资源查看命令 如系统、资源、磁盘和分区、网络、进程、用户、服务、程序等
本实验主要涉及到了一些基本的磁盘管理和文件系统相关的命令,包括`gdisk`用于分区,`lsblk`查看磁盘和分区信息,`blkid`获取文件系统元数据,以及`df`和`du`用于监控磁盘空间使用情况。同时,实验还涵盖了硬链接和...
LINUX 系统查看命令是系统管理员或用户查看系统信息的重要命令,通过这些命令可以了解系统的版本信息、CPU 信息、内存信息、硬盘信息等。这些信息对于系统的管理和维护非常重要。 查看版本信息 要查看 LINUX 系统...
Linux查看磁盘分区等命令和相关工具介绍.pdf
Linux磁盘管理相关命令
在Linux操作系统中,管理和查看Raid(冗余磁盘阵列)信息对于系统管理员来说是一项基本任务。了解如何查看Raid磁盘阵列信息对于维护服务器的稳定性和数据安全性至关重要。Raid磁盘阵列分为软件Raid和硬件Raid,它们...
Linux & Solaris 硬件信息查看的命令 作为一名 IT 行业大师,我将为您详细介绍 Linux & Solaris 硬件信息查看的命令。 Linux 硬件信息查看命令 1. 查看 Linux 内存信息 Linux 中可以使用 `cat /proc/meminfo` ...
Linux磁盘分区是管理和利用计算机存储资源的一个关键环节。Linux系统下磁盘分区的查看和管理涉及到多个命令和工具,以下将详细介绍几个核心的命令和工具及其使用方法。 ### df命令 df命令是查看文件系统磁盘空间...
Linux操作系统提供了多种命令来查看CPU型号、内存大小、硬盘空间等信息。本文将详细介绍这些命令的使用方法和示例输出。 一、查看CPU信息 1.1 查看CPU个数 命令:`cat /proc/cpuinfo | grep physical id | uniq |...
在 Linux 系统中,查看磁盘使用情况是一项常规且重要的系统管理任务。以下是一些常用的命令和方法,帮助你查看和管理磁盘空间。 1. 使用 df 命令 通过上述命令和工具,你可以有效地监控和管理 Linux 系统的磁盘使用...
本文将详细介绍如何在Linux环境下查看磁盘的相关信息,包括磁盘的使用情况、分区信息以及I/O统计等。 #### 一、查看磁盘使用情况($df -lh) `df` 命令用于显示文件系统磁盘空间的使用情况。通过添加不同的选项...
### Linux系统信息查看命令大全 在Linux环境中,掌握一系列实用的命令行工具是十分重要的,这些工具可以帮助我们高效地管理、监控以及诊断系统的各种状态。本文将详细介绍一系列用于查看Linux系统信息的常用命令,...