Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Then you will see the table like below

Code Block
/dev/sda1: PARTLABEL="Microsoft reserved partition" PARTUUID="12b9f5c9-e4f0-4731-9205-0ee066317ede"
/dev/sda2: UUID="04E6-6014" TYPE="exfat" PTTYPE="dos" PARTLABEL="Basic data partition" PARTUUID="636e9a0f-5fdf-43ca-8158-8f1af0a84f29"
/dev/sdb1: SEC_TYPE="msdos" UUID="473B-DFF7" TYPE="vfat" PARTLABEL="EFI System Partition" PARTUUID="ac9b3a25-7c96-4eca-8731-af37434ab252"
/dev/sdb2: UUID="a98c1217-d399-44ce-8e0e-3d6433d5b849" TYPE="xfs" PARTUUID="767fa4ae-e5f2-4fb6-ac9f-7fe6f37d97e7"
/dev/sdb3: UUID="5Rmufk-9xFj-hLgz-SsKs-PjoI-6RRl-CIweXh" TYPE="LVM2_member" PARTUUID="759b5d26-916e-46f0-aa47-14a032741904"
/dev/mapper/centos-root: UUID="53f9a30e-528c-4169-9835-13a6f47264d8" TYPE="xfs"
/dev/mapper/centos-swap: UUID="a59b7e29-a2a0-4548-9db0-fc1fcc267395" TYPE="swap"drwxr-xr-x 2 root root 140 Jul 13 13:58 .
drwxr-xr-x 8 root root 160 Jul 13 13:58 ..
lrwxrwxrwx 1 root root  10 Jul 13 13:58 0C80-DEDB -> ../../sda1
lrwxrwxrwx 1 root root  10 Jul 13 13:58 2e3fddc0-f6db-4b5b-a4b1-f8cd51da5095 -> ../../dm-1
lrwxrwxrwx 1 root root  10 Jul 13 13:58 8a27fe79-e520-4eff-bf2d-69088cb95b83 -> ../../dm-0
lrwxrwxrwx 1 root root  10 Jul 13 13:58 9096-6D1E -> ../../sdb2
lrwxrwxrwx 1 root root  10 Jul 13 13:58 dd68fbad-bf99-4fd7-aee4-76fb8c0323f9 -> ../../sda2

In my case, I tried to mount /dev/sda2 above and its UUID is 636e9a0f-5fdf-43ca-8158-8f1af0a84f29, and I it at /etc/fstab like below:

Code Block
UUID=636e9a0f-5fdf-43ca-8158-8f1af0a84f299096-6D1E 	/mnt/10T	ext4	defaults	0 0

...