$ lsblk
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS
sda 8:0 0 238.5G 0 disk
├─sda1 8:1 0 501M 0 part /boot/efi
├─sda2 8:2 0 8G 0 part [SWAP]
├─sda3 8:3 0 55G 0 part /
├─sda4 8:4 0 145G 0 part /home
└─sda5 8:5 0 30G 0 part /run/media/smjt2000/477d005f-30d0-48a9-b084-defca157bd42
$ sudo blkid
/dev/sda4: UUID="1faad7d4-65b4-4407-bc16-52034acfc3ee" BLOCK_SIZE="4096" TYPE="ext4" PARTUUID="9683780d-c96f-c44c-a9b5-b0c88f1a9741"
/dev/sda2: UUID="90e5c62f-0c99-4a22-b611-30737c528ad4" TYPE="swap" PARTUUID="cfb4786b-54c3-1a45-9dba-b7be0d96ce08"
/dev/sda5: UUID="477d005f-30d0-48a9-b084-defca157bd42" BLOCK_SIZE="4096" TYPE="ext4" PARTUUID="996d5596-c6d2-41a3-aef3-b6d49f41ab06"
/dev/sda3: UUID="c6b89e6d-8689-4c71-acdf-73f68a480a21" BLOCK_SIZE="4096" TYPE="ext4" PARTUUID="f3e60586-cfc9-c644-a656-258feec4ff5c"
/dev/sda1: LABEL_FATBOOT="NO_LABEL" LABEL="NO_LABEL" UUID="53D9-98B0" BLOCK_SIZE="512" TYPE="vfat" PARTUUID="d7a04199-7cd4-7e43-911b-960e09f3fbb6"
$ sudo fdisk -l
Disk /dev/sda: 238.47 GiB, 256060514304 bytes, 500118192 sectors
Disk model: Apacer AS350 256
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: gpt
Disk identifier: 933E0C32-F5D8-42C0-B296-723F79BBD4D1
Device Start End Sectors Size Type
/dev/sda1 34 1026047 1026014 501M EFI System
/dev/sda2 1026048 17803263 16777216 8G Linux swap
/dev/sda3 17803264 133146623 115343360 55G Linux filesystem
/dev/sda4 133146624 437233663 304087040 145G Linux filesystem
/dev/sda5 437233664 500117503 62883840 30G Linux filesystem
### EOS ###
# /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=53D9-98B0 /boot/efi vfat defaults,noatime 0 2
UUID=90e5c62f-0c99-4a22-b611-30737c528ad4 swap swap defaults 0 0
UUID=c6b89e6d-8689-4c71-acdf-73f68a480a21 / ext4 defaults,noatime 0 1
UUID=1faad7d4-65b4-4407-bc16-52034acfc3ee /home ext4 defaults,noatime 0 2
tmpfs /tmp tmpfs defaults,noatime,mode=1777 0 0
### DEBIAN ###
# /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).
#
# systemd generates mount units based on this file, see systemd.mount(5).
# Please run 'systemctl daemon-reload' after making changes here.
#
# <file system> <mount point> <type> <options> <dump> <pass>
# / was on /dev/sda5 during installation
UUID=477d005f-30d0-48a9-b084-defca157bd42 / ext4 errors=remount-ro 0 1
# /boot/efi was on /dev/sda1 during installation
UUID=53D9-98B0 /boot/efi vfat umask=0077 0 1
# /home was on /dev/sda4 during installation
UUID=1faad7d4-65b4-4407-bc16-52034acfc3ee /home ext4 defaults 0 2
# swap was on /dev/sda2 during installation
UUID=90e5c62f-0c99-4a22-b611-30737c528ad4 none swap sw 0 0