You are not logged in.
Pages: 1
I have a number of empty NTSF partitions which are not in use, and are omitted from fstab. Is it possible to hide them from the Thunar sidebar?
Linux Mint Cinnamon 21.3
Offline
Try using udev rules to hide these partitions from your DE.
Create the file /etc/udev/rules.d/99-hide-partition.rules with the following content:
KERNEL=="sda1", ENV{UDISKS_IGNORE}="1"
KERNEL=="sdb2", ENV{UDISKS_IGNORE}="1"
...change "sda1" and "sda2" to match the partitions that you want to hide. Add more lines if you need them.
Then re-load the udev rules:
sudo udevadm trigger
...and close and restart Thunar. If Thunar is running in daemon mode, you might need to restart that process as well (or log out and back in again).
Please remember to mark your thread [SOLVED] to make it easier for others to find
--- How To Ask For Help | FAQ | Developer Wiki | Community | Contribute ---
Offline
Thanks again ToZ.
Linux Mint Cinnamon 21.3
Offline
Another way to do this is to add them to /etc/fstab, and include noauto in the options.
Registered Linux user #470359
Permanently recovered BOFH
Any advice in this post is worth exactly what you paid for it.
Offline
Pages: 1
[ Generated in 0.008 seconds, 8 queries executed - Memory usage: 521.33 KiB (Peak: 522.17 KiB) ]