how to automount without nodev option?
When I mount external disk in file manager it is mounted with nodev
option:
/dev/sdd2 on /run/media/wojdyr/b type btrfs (rw,nosuid,nodev,relatime,seclabel,space_cache,uhelper=udisks2)
I need to have this particular disk mounted without nodev
(to chroot
there; I need /dev/null
inside of chroot).
So every time I do
sudo mount -o remount,dev /run/media/wojdyr/b/
Is it possible to configure auto-mounting to mount this disk without nodev
?