linux查看磁盘空间


[root@localhost /]# df -lh
文件系统              容量  已用 可用 已用% 挂载点
/dev/mapper/VolGroup00-LogVol00
                       71G  2.7G   64G   5% /
/dev/hdb1              97M   12M   81M  13% /boot
tmpfs                 474M     0  474M   0% /dev/shm

挂载点就是我们实际的目录

/表示根目录 大小是 71G

 

 

 

fdisk 是一款强大的磁盘操作工具,来自util-linux软件包,我们在这里只说他如何查看磁盘分区表及分区结构;参数 -l ,通过-l 参数,能获得机器中所有的硬盘的分区情况

[root@localhost /]# fdisk -l

Disk /dev/hdb: 80.0 GB, 80026361856 bytes
16 heads, 63 sectors/track, 155061 cylinders
Units = cylinders of 1008 * 512 = 516096 bytes

   Device Boot      Start         End      Blocks   Id  System
/dev/hdb1   *           1         203      102280+  83  Linux
/dev/hdb2             204      155061    78048432   8e  Linux LVM

 

在上面Blocks中,表示的是分区的大小,Blocks的单位是byte ,我们可以换算成M,比如第一个分区/dev/hda1的大小如果换算成M,应该是6144831/1024=6000M,也就是6G左右,其实没有这么麻烦,粗略的看一下把小数点向前移动三位,就知道大约的体积有多大了;

 

可以指定fdisk -l 来查看其中一个硬盘的分区情况

[root@localhost /]# fdisk -l /dev/hdb1

Disk /dev/hdb1: 104 MB, 104735232 bytes
16 heads, 63 sectors/track, 202 cylinders
Units = cylinders of 1008 * 512 = 516096 bytes

 

posted @ 2011-08-09 09:11  饺子吃遍天  阅读(149)  评论(0编辑  收藏  举报