I've got an Ubuntu install on a USB with a separate NTFS partition, can I expect the same UUID for the partition if I removed and reattached the USB to a computer?
Asked
Active
Viewed 3,534 times
1 Answers
4
Usually the UUID of an external drive does not change. However under certain circumstances (e.g. by switching to another USB port) the UUID may become different.
Therefore we can mount drives using their label. Because we define the label by ourselves it will not change. However we need to take care to make unique labels for our drives.
Mounting by labels can also be done in the Fstab by adding a line similar to this:
LABEL="ExternalExt3" /media/usb-ext3 ext3 defaults 0 2
To add or change a label we may use:
for FAT32:
sudo mlabel -i /dev/sdc1 ::"my_label"
for NTFS:
sudo ntfslabel /dev/sdc1 my_label
for ext2/3/4:
sudo e2label /dev/sdc1 my_label
(adapt the values in the given examples to your system!). NTFS partitions can also be labeled with gparted.

Takkat
- 142,284
fstab
could use labels as well, thanks for the heads up! – Oxwivi Jun 17 '11 at 17:56defaults
, will a user be able to read/write properly? – Oxwivi Jun 18 '11 at 07:56defaults
specify, I cannot comprehend if it does affect user read/write or not. – Oxwivi Jun 18 '11 at 08:31/media/NTFS/
not ready. Do I spin it off into a separate question? By the way,mlabel
doesn't work for NTFS. – Oxwivi Jun 20 '11 at 04:24