【资料整理】磁盘-修改uuid
删除数据盘并再度分区和格式化后,如何挂载到系统上呢? 1)得到uuid [root@s79 ~]# ls -l /dev/disk/by-uuid/ |grep sdb lrwxrwxrwx 1 root root 10 Jul 1 10:46 6e9e4443-cad6-40bd-8ccc-1798e72b2107 -> ../../sdb1 2)更新原来的uuid # mount –o remount,rw / # vi /etc/fstab 将: UUID=8fc1e2f4-a6b4-4c5c-99d9-c6ae545a6d63 /data ext4 defaults 1 2 修改为: UUID=6e9e4443-cad6-40bd-8ccc-1798e72b2107 /data ext4 defaults 1 2 重启
原文地址:http://nosmoking.blog.51cto.com/3263888/1611824