The df -h command only shows mounted partitions. mounted simply meaning accessible so that output doesn't really help anyone to help you. The output you posted shows:
/dev/nvme0n1p2 1.9T 9.8G 1.8T 1% /
/dev/nvme0n1p1 511M 51M 461M 10% /boot/efi
That would be the Ubuntu system partition (partition 2) , the partition with the root ( / ) symbol at the end. The second partition is your EFI partition. The output below shows your 2 other drives, one 231G and one 1.9T.
/dev/sda1 231G 1.8G 230G 1% /media/chris/USBFlash256
/dev/nvme1n1p1 1.9T 28K 1.8T 1% /media/chris/Drive2
To get information on them as far as permissions and owner:group you should use the ls command to list that information. Just open a terminal and run the commands below. To get the same information on the contents of these directories, any directory or file inside, run the commands and omit the 'd' in ls -ld.
Code:
ls -ld /media/chris/USBFlash256
ls -ld /media/chris/Drive2
Do these drives have Linux filesystems. If they are windows, you need to set this in the /etc/fstab file as windows doesn't use/understand the standard Linux rwx permissions. The link below gives an example of changing ownership if that is what is needed. You don't indicate the owner:group but based on your post, it is likely root:root which is standard. Just as an FYI, a standard user generally does not have permission to write/delete outside the /home/user directory. That's very basic with Linux. You need to use sudo to do these things that require administrator privileges to change system settings. There are many sites which explain how to change owner:group such as the one below. If the link below doesn't help, just do an online search until you find one you understand.
https://askubuntu.com/questions/1368...additional-hdd
Bookmarks