All the active storages devices in Linux are part of the single file system starting at /.
The hard drive is identified by /dev/sda:
s identifier indicates that it is a sata drive
a indicates that it is the first drive (/dev/sdb would the the second drive if present)
the drive is divided into different volumes/partitions, each with its own ID mounted at a different location in the file system
First partition is /dev/sda1
Second partition is /dev/sda2, mounted at /boot/efi
Third partition is /dev/sda3, mounted at filesystem root /
Every file or directory that isn't in one of the subdirectory mount points, resides on the /dev/sda3 partition since it is at the filesystem root.
The virtual dvd drive is identified by the read-only /dev/sr0
Mounting Configuration
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># / was on /dev/sda3 during installation UUID=2b17aaa3-594a-43eb-9c65-3b89ebb0bc05/ext4errors=remount-ro01# /boot/efi was on /dev/sda2 during installation UUID=4704-6965/boot/efivfatumask=007701/swapfilenoneswapsw00
Each partition has a unique identifier UUID that the system uses.
mount
mount - command used to mount partitions, or shows the current mounted devices
df - displays the disk file system space usage of all the mounted partitions
df-h# Print sizes in a human-readable formatFilesystemSizeUsedAvailUse%Mountedontmpfs393M1,6M392M1%/run/dev/sda324G8,6G15G38%/tmpfs2,0G02,0G0%/dev/shmtmpfs5,0M4,0K5,0M1%/run/lock/dev/sda2512M5,3M507M2%/boot/efitmpfs393M2,4M391M1%/run/user/1000
du
du - display the disk usage of given files or directories
It can be combined with other commands with pipes.
du-sh~# Summarize the total disk usage of the directory and print in a human-readable format148M/home/user