Linux中查看和修改分区的uuid方便挂载使用

查看硬盘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

posted @ 2019-07-23 19:48  lvusyy  阅读(5832)  评论(0编辑  收藏  举报