sudo blkid -o list
device fs_type label mount point UUID
-------------------------------------------------------------------------------
/dev/sda1 (not mounted)
/dev/sda2 ntfs DATA (not mounted) 1256181A561800E1
/dev/sda3 swap [SWAP] fc1b9c1f-3edb-4052-8086-84d16f442d37
/dev/sda4 vfat (not mounted) D023-C562
/dev/sda5 ext4 / 987416ff-acac-4ab2-bd86-7a3f6eaeb3f5
/dev/sdb1 vfat ESP (not mounted) 94C4-319E
/dev/sdb2 (not mounted)
/dev/sdb3 ntfs OS (not mounted) 78F60FEAF60FA788
/dev/sdb4 ntfs (not mounted) 4A8AECBD8AECA6A3
/dev/sdb5 ntfs Image (not mounted) 9EF00ED0F00EAE99
/dev/sdb6 ntfs DELLSUPPORT (not mounted) C6884F0B884EF987
cat /etc/fstab
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a device; this may
# be used with UUID= as a more robust way to name devices that works even if
# disks are added and removed. See fstab(5).
#
# <file system> <mount point> <type> <options> <dump> <pass>
UUID=fc1b9c1f-3edb-4052-8086-84d16f442d37 swap swap defaults,noatime 0 2
UUID=987416ff-acac-4ab2-bd86-7a3f6eaeb3f5 / ext4 defaults,noatime 0 1
cat /etc/default/grub | grep GRUB_CMDLINE_LINUX_DEFAULT
GRUB_CMDLINE_LINUX_DEFAULT="quiet udev.log_priority=3"
GRUB_CMDLINE_LINUX_DEFAULT="resume=/dev/sda3"
cat /etc/mkinitcpio.conf | grep HOOKS
# HOOKS
# This is the most important setting in this file. The HOOKS control the
# order in which HOOKS are added. Run 'mkinitcpio -H <hook name>' for
# HOOKS=(base)
# HOOKS=(base udev autodetect block filesystems)
# HOOKS=(base udev block filesystems)
# HOOKS=(base udev block mdadm encrypt filesystems)
# HOOKS=(base udev block lvm2 filesystems)
#HOOKS="base udev autodetect modconf block keyboard keymap resume filesystems"
HOOKS="base udev autodetect modconf block resume keyboard keymap filesystems"