位置: 编程技术 - 正文
推荐整理分享Linux中df命令查询磁盘信息和fdisk命令分区的用法(linux中df命令详解),希望有所帮助,仅作参考,欢迎阅读内容。
文章相关热门搜索词:linux df命令和du命令,linux df命令和du命令,linux df -h命令参数详解linux,linux df -h命令参数详解linux,linux中df命令详解,linux命令df -h结果详解,linux命令df -h结果详解,linux中df命令详解,内容如对您有帮助,希望把文章链接给更多的朋友!
df - 报告文件系统磁盘空间的使用情况
总览
df [OPTION]... [FILE]... POSIX 选项: [-kP]
GNU 选项 (最短方式): [-ahHiklmPv] [-t fstype] [-x fstype] [--block-size=size] [--print-type] [--no-sync] [--sync] [--help] [--version] [--]
描述
此手册页文档是df的GNU版本. df命令列出指定的每一个文件名所在的文件系统上可用磁盘空间的数量。 如果没有指定文件名,则显示当前所有使用中的文件系统.缺省设置时, 磁盘空间以1K为一块显示,如果环境变量POSIXLY_CORRECT已设 置,则采用字节为一块显示. 如果参数是一个包含已使用文件系统的磁盘设备名, df命令显示出的是该文件系统的可用空间,而非包含设备结点的文件系 统(只能是根文件系统).此版本的df不能显示未使用文件系统的可用空 间,这是由于大多数系统在响应这样的请求时必须很清楚该文件系统的 结构.
GNU 参数说明
-a, --all 列出包括BLOCK为0的文件系统 --block-size=SIZE use SIZE-byte blocks 指定块的大小 -h,--huma-readable 用常见的格式显示出大小(例如:1K M 2G) -H,--si 同上,但是这里的1k等于字节而不是字节 -i, --inodes 用信息索引点代替块表示使用状况 -k, --kilobytes 指定块大小等于字节来显示使用状况 -l, --local 只显示本地文件系统使用状况 -m, --megabytes 以指定块大小等于字节(1M)来显示使用状况 --no-sync 在取得使用信息前禁止调用同步 (default) -P, --portability 使用POSIX格式输出 --sync 在取得使用信息前调用同步 -t, --type=TYPE 只显示指定类型(TYPE)的文件系统 -T, --print-type 输出每个文件系统的类型 -x, --exclude-type=TYPE 只显示指定类型(TYPE)之外的文件系统. -v (忽略)--help 输出该命令的帮助信息并退出 --version 输出版本信息并退出
例:
复制代码代码如下:[root@localhost ~]# df #列出各文件系统的磁盘空间使用情况[root@localhost ~]# df -ia #列出各文件系统的i节点使用情况[root@localhost ~]# df -T #列出文件系统的类型[root@localhost ~]# df -h #目前磁盘空间和使用情况 以更易读的方式显示[root@localhost ~]# df -k #以单位显示磁盘的使用情况
fdisk磁盘分区命令
-v 打印 fdisk 的版本信息并退出.-l 列出指定设备的分区表信息并退出。 如果没有给出设备,那么使用那些在 /proc/partitions (如果存在)提到的.-u 以扇区数而不是以柱面数的形式显示分区表中各分区的信息. -s 分区 将分区的 大小 (单位为块)信息输出到标准输出
例a,查看所有分区复制代码代码如下:[root@localhost ~]# fdisk -l </p><p>Disk /dev/sda: .1 GB, bytes heads, sectors/track, cylindersUnits = cylinders of * = bytes</p><p> Device Boot Start End Blocks Id System/dev/sda1 * 1 Linux/dev/sda2 Linux swap / Solaris/dev/sda3 5 Extended/dev/sda5 + Linux例b,fdisk分区复制代码代码如下:[root@localhost ~]# fdisk /dev/hdc #分区时,不要加上数字The number of cylinders for this disk is set to .There is nothing wrong with that, but this is larger than ,and could in certain setups cause problems with:1) software that runs at boot time (e.g., old versions of LILO)2) booting and partitioning software from other OSs (e.g., DOS FDISK, OS/2 FDISK)Command (m for help): m #可以查看帮助Command action a toggle a bootable flag b edit bsd disklabel c toggle the dos compatibility flag d delete a partition #删除分区 l list known partition types #列举已知分区 m print this menu n add a new partition #增加分区 o create a new empty DOS partition table p print the partition table #显示分区表 q quit without saving changes #不保存退出分区 s create a new empty Sun disklabel t change a partition's system id #改变分区ID u change display/entry units v verify the partition table w write table to disk and exit #保存分区操作 x extra functionality (experts only) Command (m for help): p Disk /dev/hdc: .1 GB, bytes #磁盘名称和大小 heads, sectors/track, cylinders #磁头、磁区与磁柱数量,多少Units = cylinders of * = bytes #每个磁柱的大小 Device Boot Start End Blocks Id System/dev/hdc1 * 1 Linux/dev/hdc2 + Linux/dev/hdc3 + Linux/dev/hdc4 5 Extended/dev/hdc5 Linux swap / SolarisCommand (m for help): q # q是不保存退出,w不要随便输入
例c,-c 以柱面显示复制代码代码如下:[root@server7 ~]# fdisk -cl /dev/vdbDisk /dev/vdb: MB, bytes heads, sectors/track, cylindersUnits = cylinders of * = bytesSector size (logical/physical): bytes / bytesI/O size (minimum/optimal): bytes / bytesDisk identifier: 0xce Device Boot Start End Blocks Id System/dev/vdb1 3 Linux/dev/vdb2 Linux/dev/vdb3 Linux[root@server7 ~]# fdisk -ul /dev/vdbDisk /dev/vdb: MB, bytes heads, sectors/track, cylinders, total sectorsUnits = sectors of 1 * = bytesSector size (logical/physical): bytes / bytesI/O size (minimum/optimal): bytes / bytesDisk identifier: 0xce Device Boot Start End Blocks Id System/dev/vdb1 LinuxPartition 1 does not end on cylinder boundary./dev/vdb2 LinuxPartition 2 does not end on cylinder boundary./dev/vdb3 LinuxPartition 3 does not end on cylinder boundary.
Linux中用于进程显示的top命令使用实例集锦 Linux中的top命令显示系统上正在运行的进程。它是系统管理员最重要的工具之一。被广泛用于监视服务器的负载。在本篇中,我们会探索top命令的细节。
Linux下安装使用cpulimit来限制CPU的利用率 随着Linux系统上面的程序越来越多,cpu有时候会力不从心,有些进程是可以限制cpu的.cpuliimt完美的解决了这个问题。cpulimit安装使用都非常简单,大家往
Linux中显示空闲内存空间的free命令的基本用法 free命令显示系统使用和空闲的内存情况,包括物理内存、交互区内存(swap)和内核缓冲区内存参数-b显示内存的单位为字节-k显示内存的单位为KB-m显示内
标签: linux中df命令详解
本文链接地址:https://www.jiuchutong.com/biancheng/353460.html 转载请保留说明!友情链接: 武汉网站建设