So starting with Debian Trixie, any USB drive that is formatted as ext(x) will not automatically mount when plugged in. This problem is also in Devuan 6 which is based on Trixie, and I'd presume it exists on any other OS based on Trixie. The fix to once again get an ext-formatted external drive to automatically mount when plugged in is this:
Create a text file named 65-ext4.rules and place it in
I rebooted after doing this, so I can't say for sure if that was a necessary step or not. If you don't reboot and it doesn't work, reboot.
[Mods, should this have been put in tutorials? I put it here because I think it's peculiar to Debian, although I could be wrong about this.]
Create a text file named 65-ext4.rules and place it in
/etc/udev/rules.d/. Place the following in that file:
Code:
# extX-Dateisysteme automatisch mounten
SUBSYSTEM=="block", ENV{ID_FS_TYPE}=="ext2|ext3|ext4|ext4dev|jbd", ENV{UDISKS_AUTO}="1"
I rebooted after doing this, so I can't say for sure if that was a necessary step or not. If you don't reboot and it doesn't work, reboot.
[Mods, should this have been put in tutorials? I put it here because I think it's peculiar to Debian, although I could be wrong about this.]
Last edited:

