You are not logged in.
I need to figure out what causes Dolphin to not see one of the unmounted partitions. With Dophin, it is easy to mount partitions with one click. In this case, I cannot see this partition and need to mount in CLI ↓
sudo mount /dev/sda2 /mntI even checked in the bios if it was blocking something, but I saw nothing. What could be the reason?
Last edited by thommen (2021-09-03 14:41:20)
Offline
It's an internal partition. Do you have an fstab entry for it?
https://userbase.kde.org/Dolphin/File_Management#Places
Online
It's an internal partition. Do you have an fstab entry for it?
Not. I don't want the partition to be mounted automatically. I want to add it manually.
This is not the place. For me it is a device ↓

Edit
I added a partition to fstab. Still not visible in the Dolphin. Only this one partition
Last edited by thommen (2021-09-02 09:43:00)
Offline
Not. I don't want the partition to be mounted automatically. I want to add it manually.
"man fstab", see "noauto" - and please post the updated fstab.
Online
I have:
# Static information about the filesystems.
# See fstab(5) for details.
# <file system> <dir> <type> <options> <dump> <pass>
UUID=32F7-45EF /boot/efi vfat defaults 0 1
# /dev/nvme0n1p2
UUID=c25b43bb-bc44-4742-9b28-40d0e0035888 / ext4 rw,relatime 0 1
# /dev/nvme0n1p3
UUID=1a4ef801-d13b-4d39-a3d6-36eebee5b590 /home ext4 rw,relatime 0 2
# /dev/sda2 | magazyn
UUID=89b85be3-1d88-49cc-8987-1e2cbb8bf741 /run/media/tom/89b85be3-1d88-49cc-8987-1e2cbb8bf741 ext4 rw,relatime 0 2
# /dev/sdb | wirtualizacja
UUID=577fa918-0328-4ebf-9857-a60d6d9ad62f /run/media/tom/577fa918-0328-4ebf-9857-a60d6d9ad62f ext4 rw,relatime 0 2Offline
That sda2 is automounting though?
Online
That sda2 is automounting though?
Yes. Eventually I set it up to mount automatically. Then I can add it to the site as stated on page https://userbase.kde.org/Dolphin/File_Management#Places. This does not fix the problem as to why this partition cannot be seen in the device in Dolphin.
Look ↓. Always sda2 partition, mounted in Dolphin like "a485f700-7716-4802-9bd3-334b46baabf9". I don't know what's going on that I can't see her at the Dolphin now.
lsblk -f
NAME FSTYPE FSVER LABEL UUID FSAVAIL FSUSE% MOUNTPOINTS
sda
├─sda1 ext4 1.0 a485f700-7716-4802-9bd3-334b46baabf9
└─sda2 ext4 1.0 89b85be3-1d88-49cc-8987-1e2cbb8bf741 43,8G 85% /run/media/tom/89b85be3-1d88-49cc-8987-1e2cbb8bf741
sdb
└─sdb1 ext4 1.0 577fa918-0328-4ebf-9857-a60d6d9ad62f 84,9G 17% /run/media/tom/577fa918-0328-4ebf-9857-a60d6d9ad62f
sdc
└─sdc1 ext4 1.0 5f1cbf16-44dd-45d1-bd6c-04365c07f034 260,5G 39% /run/media/tom/5f1cbf16-44dd-45d1-bd6c-04365c07f034
nvme0n1
├─nvme0n1p1 vfat FAT32 32F7-45EF 545,7M 1% /boot/efi
├─nvme0n1p2 ext4 1.0 c25b43bb-bc44-4742-9b28-40d0e0035888 21,4G 55% /
└─nvme0n1p3 ext4 1.0 1a4ef801-d13b-4d39-a3d6-36eebee5b590 4,6G 92% /homeOffline
This does not fix the problem as to why this partition cannot be seen in the device in Dolphin.
You were not supposed to automount the partition (as you also don't want to) but just provide an fstab entry w/ the "noauto" in the hope to convince dolphin/kio to list it.
# /dev/sda2 | magazyn
UUID=89b85be3-1d88-49cc-8987-1e2cbb8bf741 /run/media/tom/89b85be3-1d88-49cc-8987-1e2cbb8bf741 ext4 rw,relatime,noauto 0 2Dolphin will otherwise only list ejectable drives.
Edit: you might require
# /dev/sda2 | magazyn
UUID=89b85be3-1d88-49cc-8987-1e2cbb8bf741 /run/media/tom/89b85be3-1d88-49cc-8987-1e2cbb8bf741 ext4 rw,relatime,noauto,users 0 2Last edited by seth (2021-09-03 14:12:31)
Online
I set it up and it was still the same. It turned out that I hid a partition in Doplhin ... Now everything works. I had to hide it by accident. Thank you for your help.
Offline
Please always remember to mark resolved threads by editing your initial posts subject - so others will know that there's no task left, but maybe a solution to find.
Thanks.
Online