Je suis en train de monter un raid. sda
a été utilisé lors de l'installation et je viens de copier la table de partition sda
pour l' sdb
aimer ainsi:
$ sudo sfdisk -dL /dev/sda > partition_table_sda
$ sudo sfdisk /dev/sdb < partition_table_sda
Cependant, je remarque qu'il sda
a un uuid pour le swapspace, mais sdb
pas:
$ sudo blkid
/dev/sda5: UUID="vvvvvvvv-wwww-xxxx-yyyy-zzzzzzzzzzzz" TYPE="swap"
/dev/sda1: UUID="vvvvvvvv-wwww-xxxx-yyyy-zzzzzzzzzzzz" TYPE="ext4"
/dev/sdb1: UUID="vvvvvvvv-wwww-xxxx-yyyy-zzzzzzzzzzzz" TYPE="ext4"
La partition semble correcte cependant, c'est juste l'uuid qui manque:
$ sudo fdisk -l
Disk /dev/sda: 500.1 GB, 500107862016 bytes
255 heads, 63 sectors/track, 60801 cylinders, total 976773168 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disk identifier: 0xzzzzzzzz
Device Boot Start End Blocks Id System
/dev/sda1 * 2048 960002047 480000000 83 Linux
/dev/sda2 960004094 976771071 8383489 5 Extended
Partition 2 does not start on physical sector boundary.
/dev/sda5 960004096 976771071 8383488 82 Linux swap / Solaris
Disk /dev/sdb: 500.1 GB, 500107862016 bytes
255 heads, 63 sectors/track, 60801 cylinders, total 976773168 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disk identifier: 0xzzzzzzzz
Device Boot Start End Blocks Id System
/dev/sdb1 * 2048 960002047 480000000 83 Linux
/dev/sdb2 960004094 976771071 8383489 5 Extended
Partition 2 does not start on physical sector boundary.
/dev/sdb5 960004096 976771071 8383488 82 Linux swap / Solaris
Alors, comment puis-je affecter un uuid au swapspace sdb5
? Ou s'il a déjà un uuid, comment puis-je l'imprimer?