Linux
如何在 Linux 中查看分區是主分區還是輔助分區
如果我的分區是 Linux CentOS 中的主要或次要分區,我該如何查看它們?我試過
df -T
了,但它沒有顯示分區是主要的還是次要的。
使用
cfdisk
命令。cfdisk /dev/sda
使用此命令:
sudo parted /dev/sda
後跟GNU Parted 3.2 Using /dev/sda Welcome to GNU Parted! Type 'help' to view a list of commands. (parted) print Model: ATA WDC WD10JPVX-60J (scsi) Disk /dev/sda: 1000GB Sector size (logical/physical): 512B/4096B Partition Table: msdos Disk Flags: Number Start End Size Type File system Flags 1 1049kB 525MB 524MB primary ntfs 2 525MB 132GB 131GB primary ntfs boot 3 132GB 461GB 329GB primary ntfs 4 461GB 966GB 505GB extended lba 6 461GB 566GB 105GB logical ext4 5 566GB 896GB 330GB logical ntfs 7 896GB 966GB 70.0GB logical ext4
您可以檢查分區是主分區還是擴展分區。希望這可以幫助!