I am in the midst of a fresh install of UMate 19.10 on AMD64 system.
I created /boot (EFI) / and /home on a 512GB M.2 drive, all is well.
I created a 32GB /SWAP on a 1TB SSD, all is well.
I am trying to create a storage drive with the remainder of the 1TB SSD drive and I can't access it, even though I can see it in /mnt/storage (I created via terminal). I can't make a link to it, or have it show up as a separate drive space on Caja.
Since this is an Asus laptop, all updates, including BIOS and kernel have been done.
sudo chmod 777 /storage ... that makes /storage rwx for everyone
if the owner is root you may have to change to your username,
sudo chown jackie.jackie /storage
either from caja or from terminal can you write into that dir?
eg. touch /storage/foo (does it create a file called foo? can you edit the file?)
the mount point is /storage (and since it is ext4 there is a default lost+found dir).
you need to create a data dir in there which will have all your data.
cd /storage
sudo mkdir data
sudo chmod 777 data
cd /storage/data
touch boo
fantastic! thank you soo much for your patience. Since I do a lot of Twitch gaming my system is Windows based, so I am a bit rusty, but I think we are up and going!
If you dual-boot and want to have super-easy access to your "big five" directories (Videos, Pictures, Documents, Music and Downloads) then you can use ln to symbolically link the directories from your Microsoft user account into your Linux user account. Ideally you would mount your Windows partition, then sign out, sign in via TTY (Ctrl + Alt + Fx; Fx being F1-F6, and may require holding down the Fn key depending on your keyboard and / or BIOS settings) and using rm -rf to delete your default directories, to then replace with links.
After you can Ctrl + Alt + F7 to return at your X session, sign in and enjoy not juggling two separate sets of directories for your common files. (They even preserve their default icons!)
Now, should you reinstall and keep your home directory, you'll probably need to use XDG utils to re-assign your common directories so their icons are restored, but eventually you will persevere.