Linux查看带有fdisk和parted命令的硬盘分区
时间:2020-01-09 10:42:27 来源:igfitidea点击:
问题描述:如何查看我的scsi硬盘驱动器上的所有分区。
在Windows下,磁盘管理器精确地显示了如何在磁盘驱动器上分配空间以及可用空间等。
如何显示硬盘分区信息?
解决方法:可以使用以下任何命令:
fdisk command
:Linux分区表操纵器GNU Parted
:分区操纵程序
fdisk -l命令
列出指定设备的分区表,然后退出。
如果未提供任何设备,则使用/proc/partitions中提到的设备(如果存在),即它将尝试显示所有分区,执行:
$ sudo fdisk -l
或者
# fdisk -l
输出量
Disk /dev/sda: 500.1 GB, 500107862015 bytes 255 heads, 63 sectors/track, 60801 cylinders Units = cylinders of 16065 * 512 = 8225280 bytes Disk identifier: 0x000f1a3e Device Boot Start End Blocks Id System /dev/sda1 * 1 12749 102400000 7 HPFS/NTFS /dev/sda2 12750 24906 97651102+ 83 Linux /dev/sda3 24907 25149 1951897+ 82 Linux swap / Solaris /dev/sda4 25150 60802 286375936 f W95 Ext'd (LBA) /dev/sda5 25150 60802 286374912 7 HPFS/NTFS
GNU parted命令
通过打印选项以显示分区表,执行:
$ sudo parted /dev/sda print
输出:
Disk /dev/sda: 500GB Sector size (logical/physical): 512B/512B Partition Table: msdos Number Start End Size Type File system Flags 1 1049kB 105GB 105GB primary ntfs boot 2 105GB 205GB 100GB primary ext3 3 205GB 207GB 1999MB primary linux-swap 4 207GB 500GB 293GB extended lba 5 207GB 500GB 293GB logical ntfs Information: Don't forget to update /etc/fstab, if necessary.