I have a 256 SSD I use for / and /home, plus 2 10TiB removable harddisks. One has 3 partitions and they are mounted in /home as outline on my /etc/fstab below. The other 10TiB is for general storage of junk I've collected throughout the 2 decades I've been using Linux.
These are what's conected to my rig:
~ > sudo fdisk -l
Disk /dev/sda: 223.57 GiB, 240057409536 bytes, 468862128 sectors
Disk model: Maxsun 240GB X5
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: 34EDDE60-3BC6-4675-AE3C-F1493D798B5B
Device Start End Sectors Size Type
/dev/sda1 2048 1026047 1024000 500M EFI System
/dev/sda2 1026048 181250047 180224000 85.9G Linux filesystem
/dev/sda3 181250048 457730047 276480000 131.8G Linux filesystem
/dev/sda4 457730048 468860927 11130880 5.3G Linux filesystem
Disk /dev/sdb: 9.1 TiB, 10000831348736 bytes, 19532873728 sectors
Disk model: USB3.0
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disklabel type: gpt
Disk identifier: CE9CEACC-3AD4-F6A4-AB4E-B1F4785E0451
Device Start End Sectors Size Type
/dev/sdb1 2048 6510958591 6510956544 3T Linux filesystem
/dev/sdb2 6510958592 13021915135 6510956544 3T Linux filesystem
/dev/sdb3 13021915136 19532871679 6510956544 3T Linux filesystem
Disk /dev/sdc: 9.1 TiB, 10000831348736 bytes, 19532873728 sectors
Disk model: USB3.0
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disklabel type: gpt
Disk identifier: 4C7EC9C9-EFE5-488F-AF59-8D3C5EAC657B
Device Start End Sectors Size Type
/dev/sdc1 2048 19532871679 19532869632 9.1T Linux filesystem
[email protected] ~ >
My fstab looks like this:
[email protected] ~ > 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>
proc /proc proc defaults 0 0
none /dev/pts devpts defaults 0 0
tmpfs /tmp tmpfs defaults,noatime,mode=1777 0 0
# BOOT
UUID=925C-E02C /boot/EFI vfat defaults,rw 0 0
# ROOT
UUID=00e38eb8-aa9d-4230-9806-a7b8e8d4c7d4 / ext4 defaults,rw 0 1
# HOME
UUID=c8630c1b-bad6-4adb-9e16-73f4542f4e12 /home ext4 defaults,rw 0 0
# SWAP
UUID=80846df1-9e06-43a3-ae19-589670d2cacf swap swap sw 0 0
# FIERY FLAME
UUID=61e64195-bb48-45cc-9e19-89b205bc0f81 /home/Fiery_Flame ext4 defaults,rw 0 0
# GLACIAL GARDEN
UUID=e1c3efe6-5b94-450d-8a6e-c78a8a43a4a9 /home/Glacial_Garden ext4 defaults,rw 0 0
# URBAN DESERT
UUID=420f158f-a79a-42c5-ad6d-55f1c6d435d1 /home/Urban_Desert ext4 defaults,rw 0 0
# ARCHIE 10T
UUID=5bbbce79-ff32-4462-b615-fdbb7f89d3af /media/Archie_10T ext4 defaults,rw 0 0
My inconvenience is at bootup, and I don't know why the two 10TiB removable are automatically mounting. There are symlinks on my folder pointing somewhere on the 3-partitioned removable disk, and I can't seem to figure. It wasn't always like how it is now when everything would automagically connect.
Anyway, there are a few other things that needs figuring but those are for another thread.