One change I noticed recently with the move to Plasma 6 is the Dolphin "Devices" section seems more usable. What I mean by that is more of my file systems that are not mounted at boot time have appeared in the Device section. However, not all of them. I'm trying to figure out the "magic sauce" to get them all in there.
/etc/fstab (redacted);
This is the devices list:
So the various states of being for each;
It seems maybe those that in fstab by label are in the list and "root" is just an outlier Not sure how uefi and win11 fit in though.
I'm going to edit fstab and mount all those I can by label to see if they show up after a reboot. Stand by...
/etc/fstab (redacted);
Code:
UUID=blahblah / btrfs subvol=/@KDEneon,defaults,noatime,space_cache=v2,autodefrag,compress=lzo 0 0 UUID=blahblah /home btrfs subvol=/@KDEneon_home,defaults,noatime,space_cache=v2,autodefrag,compress=lzo 0 0 UUID=blahblah /subvol btrfs defaults,noatime,space_cache=v2,autodefrag,compress=lzo 0 0 LABEL=vm_drive /mnt/vm_drive ext4 auto,users,noatime,commit=60,data=writeback,barrier=0,nobh,errors=remount-ro 0 0 LABEL=root_backup /mnt/root_backup btrfs noauto,users,noatime,space_cache=v2,autodefrag,compress=zstd 0 0 UUID=blahblah /mnt/990pro2 btrfs noauto,users,noatime,space_cache=v2,autodefrag,compress=zstd 0 0 UUID=blahblah /mnt/blade2 btrfs noauto,users,noatime,space_cache=v2,autodefrag,compress=zstd 0 0 LABEL=storage /mnt/storage btrfs noauto,users,noatime,space_cache=v2,autodefrag,compress=zstd 0 0 UUID=blahblah /mnt/sdb2 btrfs noauto,users,noatime,space_cache=v2,autodefrag,compress=zstd 0 0 LABEL=vm_backup /mnt/vm_backup ext4 noauto,users,noatime,commit=60,data=writeback,barrier=0,nobh,errors=remount-ro 0 0
Code:
storage root_backup vm_drive root uefi sdb2 win11
- "uefi" and "win11" are not in fstab
- "storage", "root_backup", "vm_drive", "sdb2" are in fstab
- "/" and "/home" are btrfs subvolumes and not in devices list
- "990pro2", "vm_backup", "blade2" are not in the device list.
- "root" is mounted at folder "/subvol" and is in the device list as "root".
It seems maybe those that in fstab by label are in the list and "root" is just an outlier Not sure how uefi and win11 fit in though.
I'm going to edit fstab and mount all those I can by label to see if they show up after a reboot. Stand by...
Comment