Each of those drives has a single partition. And none of them are in your fstab -- thats why they aren't mounting. Let's create some mount points, and then mount those drives to the points and take a look.
First the mount points:
Now mount them:
Now, you should be able to open Dolphin and explore these drives. Can you?
First the mount points:
Code:
sudo mkdir /mnt/sdb /mnt/sdc /mnt/sdd
Code:
sudo mount /dev/sdb /mnt/sdb sudo mount /dev/sdc /mnt/sdc sudo mount /dev/sdd /mnt/sdd
Comment