SHARE
Facebook X Pinterest WhatsApp

Using UUID to Deal With Disks

Written By
thumbnail Juliet Kemp
Juliet Kemp
Jul 20, 2010
ServerWatch content and product recommendations are editorially independent. We may make money when you click on links to our partners. Learn More



Juliet Kemp

UUID (Universal Unique Identifier) notation is another way provided by
Linux to access your disks. Unlike the standard /dev/hda1,
/dev/sda2 notation, it is linked specifically to a particular piece
of hardware (whereas /dev/ notation can shift between disks depending
on how they’re plugged in). This means you don’t have the risk of a
system reconfiguration causing disks to be renamed, and thus causing
knock-on breakage of things that reference that disk.

Tip of the Trade: UUID notation is one way to access your disks when using Linux. But first you must find the identifier.

OK, so, first, how do you find out the UUID of your disk? The command
blkid can be used — here’s its output for one of my disks:

# blkid /dev/hda1
/dev/hda1: UUID="0ef96300-36c0-4575-8a1d-2d36ff4cd585" SEC_TYPE="ext2" TYPE="ext3"

Alternatively, you can look at the /dev/disk/by_uuid/ directory to
see which UUID is associated with which disk. (Use df to find out
what device names you currently have mounted.)

Recent Tips
» Sysreq Key
» tcpdump
» superblock

Read All Tips of the Trade

You can also do this the other way around, starting from the UUID:
findfs UUID=uuid will tell you which disk is associated with that
UUID.

Once you have the UUID of a device, you can use it with mount by
using the -U switch:

mount -U 0ef96300-36c0-4575-8a1d-2d36ff4cd585 /mnt/disk1

or, you can use it in your /etc/fstab by putting UUID=uuid at
the start of the relevant line, instead of /dev/hdaX.

To assign a UUID to a disk, use tunefs. You can generate your own
UUID with the command uuidgen. Then type:

tune2fs -U uuid /dev/sda2

This might come in handy if, say, you’ve cloned your disk (e.g., by using
dd) and must be able to mount both the original and the clone.
Assign it a new UUID and you’re away!

thumbnail Juliet Kemp

Juliet Kemp is a ServerWatch contributor.

Recommended for you...

What Is a Container? Understanding Containerization
What Is a Print Server? | How It Works and What It Does
Nisar Ahmad
Dec 8, 2023
What Is a Network Policy Server (NPS)? | Essential Guide
Virtual Servers vs. Physical Servers: Comparison and Use Cases
Ray Fernandez
Nov 14, 2023
ServerWatch Logo

ServerWatch is a top resource on servers. Explore the latest news, reviews and guides for server administrators now.

Property of TechnologyAdvice. © 2025 TechnologyAdvice. All Rights Reserved

Advertiser Disclosure: Some of the products that appear on this site are from companies from which TechnologyAdvice receives compensation. This compensation may impact how and where products appear on this site including, for example, the order in which they appear. TechnologyAdvice does not include all companies or all types of products available in the marketplace.