The first three columns are obvious, it’s UUID, mountpoint, filesystem.
To find out the UUID of the drive I prefer lsblk -f instead of bklid (the readout is more clear to me, idk).
Regarding mountpoint, some people prefer to mount stuff in /mnt and then symlink it, but I just mount it directly where it needs to go. Works fine.
The filesystem I use on all of my drives is ext4, it’s good enough for me. If you are not sure which filesystem is on your drive, the same command as above, lsblk -f will let you know.
For normal drives I always use defaults,noatime as options, for dump I always use 0 and for pass (fsck order) always 2 (root drive should have 1, swap and efi 0, everything else 2).
That’s pretty much all one needs to do to add a secondary drive.
Oh, yup. Precisely what I wanted. I guess I dragged it out pointlessly with my questions lol.
Thank you everyone!
Can’t tag multiple replies as a solution so imma do Kresimirs since he did multiple edits to pretty much sum up the topic, in case anyone needs a reference in the future. But y’all were a big help!
To further explain how I did it. I opened Gparted, unmounted the drive, I formatted it to ext4, I remounted it and it was ready. Either I did something terribly wrong but it worked anyway or I did it right.
I used Gparted as well, still won’t let me copy/paste. I right click on a photo on my desktop & go to paste it and can’t select paste cause its greyed out.
You need to find out where it is mounted in the file system, that is it’s mount-point. Then you need to change the ownership of the mount-point from root to your user according to:
is sda1 your main partition for the OS? If so, don’t mess with that. Try also what @pebcak said, although I didn’t have to do it: sudo chown $USER:$USER /path/to/mount/point .
Or if you want that partiton to get mounted automatically at each boot, then do as above in this thread and create a convenient mount point and entry in /etc/fstab.