使用msdos分区表时blkid中的PARTUUID是什么?

使用msdos分区表时blkid中的PARTUUID是什么?

我使用msdos分区表,所以不支持PARTUUID(仅在GPT分区表上)

root@xenial:~# fdisk -l
Disk /dev/sda: 200 GiB, 214748364800 bytes, 419430400 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0xa9ff83af

Device     Boot     Start       End   Sectors  Size Id Type
/dev/sda1  *         2048 314574847 314572800  150G  7 HPFS/NTFS/exFAT
/dev/sda2       314574848 315598847   1024000  500M 83 Linux
/dev/sda3       315598848 399484927  83886080   40G 83 Linux
/dev/sda4       399486974 407875583   8388610    4G  5 Extended
/dev/sda5       399486976 407875583   8388608    4G 82 Linux swap / Solaris

那么 blkid 中显示的 PARTUUID 是什么呢?

root@xenial:~# blkid
/dev/sda1: LABEL="windows" UUID="3364EC1A72AE6339" TYPE="ntfs" PARTUUID="a9ff83af-01"
/dev/sda2: LABEL="/boot" UUID="9de57715-5090-4fe1-bb45-68674e5fd32c" TYPE="ext4" PARTUUID="a9ff83af-02"
/dev/sda3: LABEL="/" UUID="553912bf-82f3-450a-b559-89caf1b8a145" TYPE="ext4" PARTUUID="a9ff83af-03"
/dev/sda5: LABEL="SWAP-sda5" UUID="12e4fe69-c8c2-4c93-86b6-7d6a86fdcb2b" TYPE="swap" PARTUUID="a9ff83af-05"

我需要更改它来调试 ubuntu kickstart 多重启动安装,我在哪里可以设置这个 PARTUUID ?

答案1

看起来 MBR 分区磁盘上的 PARTUUID 是来自 MBR 块的 Windows 磁盘签名(8 个十六进制数字)+ 破折号 + 两位数的分区号。

Windows 磁盘签名以小端字节顺序存储在磁盘第一个块(MBR 块)的位置 0x1B8..0x1BB 中。

此命令将直接从 MBR 显示 Windows 磁盘签名:

# dd if=/dev/sda bs=1 count=4 skip=440 2>/dev/null | od -t x4 -An

相关内容