nerdexam
Linux_Foundation

LFCS · Question #873

Instead of supplying an explicit device in /etc/fstab for mounting, what other options may be used to identify the intended partition? (Choose TWO correct answers.)

The correct answer is C. LABEL E. UUID. In the /etc/fstab file, partitions can be identified for mounting by their volume LABEL or their Universally Unique Identifier (UUID) instead of their device name.

Submitted by fatima_kr· Apr 18, 2026Storage Management

Question

Instead of supplying an explicit device in /etc/fstab for mounting, what other options may be used to identify the intended partition? (Choose TWO correct answers.)

Options

  • AFIND
  • BID
  • CLABEL
  • DNAME
  • EUUID

How the community answered

(59 responses)
  • A
    3% (2)
  • B
    2% (1)
  • C
    93% (55)
  • D
    2% (1)

Why each option

In the /etc/fstab file, partitions can be identified for mounting by their volume LABEL or their Universally Unique Identifier (UUID) instead of their device name.

AFIND

FIND is not a standard identifier used in /etc/fstab for specifying partitions.

BID

ID is not a standard identifier used in /etc/fstab for specifying partitions; while UUID contains an ID, "ID" itself is not the keyword.

CLABELCorrect

Using LABEL allows administrators to specify a partition by its assigned filesystem label, which is a persistent identifier that remains consistent across reboots and device reordering, making it more reliable than mutable device names.

DNAME

NAME is not a standard identifier used in /etc/fstab for specifying partitions; device names like /dev/sda1 are physical paths, not logical "NAME" keywords.

EUUIDCorrect

UUID (Universally Unique Identifier) provides a globally unique string for each filesystem, ensuring that the correct partition is always mounted regardless of device name changes or hardware configuration variations, thereby enhancing system robustness.

Concept tested: /etc/fstab partition identification methods

Source: https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/9/html/managing_storage_devices/mounting-a-filesystem-with-the-fstab-file_managing-storage-devices

Topics

#fstab#partition identification#UUID#LABEL

Community Discussion

No community discussion yet for this question.

Full LFCS Practice