Comments on: How to Change UUID of Partition in Linux Filesystem https://www.tecmint.com/change-uuid-of-partition-in-linux/ Tecmint - Linux Howtos, Tutorials, Guides, News, Tips and Tricks. Thu, 26 Sep 2024 12:59:36 +0000 hourly 1 By: Alexei https://www.tecmint.com/change-uuid-of-partition-in-linux/comment-page-1/#comment-2220643 Thu, 26 Sep 2024 12:59:36 +0000 https://www.tecmint.com/?p=31304#comment-2220643 In reply to RoteFahne.

You can edit grub.cfg as you want.
Usually, I mount /boot as read-only.

]]>
By: Ravi Saive https://www.tecmint.com/change-uuid-of-partition-in-linux/comment-page-1/#comment-2129227 Thu, 25 Jan 2024 04:46:21 +0000 https://www.tecmint.com/?p=31304#comment-2129227 In reply to steve.

@Steve,

To change the UUID (Universally Unique Identifier) of a Linux partition, you can use the tune2fs command.

1. First check the current UUID of the partition using the blkid command.

sudo blkid /dev/sdXY

2. To change or set the new UUID for the partition use the tune2fs command.

sudo tune2fs /dev/sdXY -U new_uuid

3. Confirm that the UUID has been changed by running the blkid command again.

sudo blkid /dev/sdXY

4. If the partition is mounted at boot time using the /etc/fstab file, you may need to update the entry with the new UUID.

sudo nano /etc/fstab

Replace the old UUID with the new UUID in the corresponding line and reboot the system.

]]>
By: steve https://www.tecmint.com/change-uuid-of-partition-in-linux/comment-page-1/#comment-2129137 Wed, 24 Jan 2024 19:27:55 +0000 https://www.tecmint.com/?p=31304#comment-2129137 This article describes changing a FILESYSTEM UUID specific to an EXTn filesystem, and NOT a partition UUID. Completely useless for other filesystems, or for a partition UUID.

]]>
By: Eduard https://www.tecmint.com/change-uuid-of-partition-in-linux/comment-page-1/#comment-1712640 Wed, 02 Feb 2022 18:40:45 +0000 https://www.tecmint.com/?p=31304#comment-1712640 In reply to W.C..

Exactly, I was searching for ways to change a PARTUUID, I already know how to change filesystem UUIDs.

So this page is totally misleading.

]]>
By: W.C. https://www.tecmint.com/change-uuid-of-partition-in-linux/comment-page-1/#comment-1611907 Mon, 18 Oct 2021 23:46:24 +0000 https://www.tecmint.com/?p=31304#comment-1611907 This isn’t about changing the partition UUID at all (PARTUUID in blkid output), but the *filesystem* UUID within the partition.

]]>