Latest web development tutorials

Linux sfdisk命令

Linux 命令大全 Linux命令大全

Linux sfdisk命令是硬盤分區工具程序。

sfdisk為硬盤分區工具程序,可顯示分區的設置信息,並檢查分區是否正常。

語法

sfdisk [-?Tvx][-d <硬盘>][-g <硬盘>][-l <硬盘>][-s <分区>][-V <硬盘>]

參數 :

  • -?或--help 顯示幫助。
  • -d<硬盤> 顯示硬盤分區的設置。
  • -g<硬盤>或--show-geometry<硬盤> 顯示硬盤的CHS參數。
  • -l<硬盤> 顯示後硬盤分區的相關設置。
  • -s<分區> 顯示分區的大小,單位為區塊。
  • -T或--list-types 顯示所有sfdisk能辨識的文件系統ID。
  • -v或--version 顯示版本信息。
  • -V<硬盤>或--verify<硬盤> 檢查硬盤分區是否正常。
  • -x或--show-extend 顯示擴展分區中的邏輯分區。

實例

顯示分區信息:

# sfdisk -l

Disk /dev/sda: 1305 cylinders, 255 heads, 63 sectors/track
Units = cylinders of 8225280 bytes, blocks of 1024 bytes, counting from 0

Device Boot Start End #cyls #blocks Id System
/dev/sda1 * 0+ 12 13- 104391 83 Linux
/dev/sda2 13 1304 1292 10377990 8e Linux LVM
/dev/sda3 0 - 0 0 0 Empty
/dev/sda4 0 - 0 0 0 Empty

Disk /dev/sdb: 652 cylinders, 255 heads, 63 sectors/track

sfdisk: ERROR: sector 0 does not have an msdos signature
/dev/sdb: unrecognized partition
No partitions found

Linux 命令大全 Linux命令大全