查看硬盘UUID:
两种方法:
ls -l /dev/disk/by-uuid
blkid /dev/sda1
修改分区UUID:
1、修改分区的UUID
Ubuntu 使用 uuid
命令 生成新的uuid
centos 使用uuidgen
命令 生成新的uuid
Ubuntu
sudo uuid | xargs tune2fs /dev/sda1 -U
centos
sudo uuidgen | xargs tune2fs /dev/sda1 -U
2、查看/etc/fstab 将原有UUID写入分区
tune2fs -U 578c1ba1-d796-4a54-be90-8a011c7c2dd3 /dev/sda1