一.fdisk命令
fdisk是磁盘分区命令,详细命令的使用可查看相关文档
使用命令fdisk -l查看当前磁盘的分区状态、
fdisk -l
[[email protected] ~]# fdisk -l Disk /dev/sda: 21.5 GB, 21474836480 bytes 255 heads, 63 sectors/track, 2610 cylinders Units = cylinders of 16065 * 512 = 8225280 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disk identifier: 0x00050ad5 Device Boot Start End Blocks Id System /dev/sda1 * 1 26 204800 83 Linux Partition 1 does not end on cylinder boundary. /dev/sda2 26 287 2098176 82 Linux swap / Solaris Partition 2 does not end on cylinder boundary. /dev/sda3 287 2611 18667520 83 Linux
二.df命令
df 是来自于coreutils 软件包,系统安装时,就自带的;我们通过这个命令可以查看磁盘的使用情况以及文件系统被挂载的位置;
举例:
df -h
[[email protected] ~]# df -h Filesystem Size Used Avail Use% Mounted on /dev/sda3 18G 1.5G 16G 9% / tmpfs 497M 0 497M 0% /dev/shm /dev/sda1 190M 27M 153M 15% /boot
从图中我们可看到磁盘的容量,已经使用的,可用的,已使用的百分比以及磁盘分区的挂载点
其它的参数请参考 man df也是可以查看到。
时间: 2024-11-10 15:49:00