Mantén la atención ya que en esta división vas a hallar el arreglo que buscas.Esta división ha sido analizado por nuestros expertos para garantizar la calidad y exactitud de nuestro post.
Solución:
Esto no se ha probado, pero me encontré con esta página: unidades flash USB de montaje automático en Linux con udev y pmount
La idea general es que realice una acción UDEV que se montará automáticamente usando pmount en su lugar. Si miras en los comentarios hay un punmount -l
que hará un desmontaje perezoso que debería ser más seguro.
extracto
Aquí hay una solución para el montaje automático de unidades flash USB/tarjetas de memoria en Linux usando solo udev y pmount.
agregar un archivo
automount.rules
en/etc/udev/rules.d
.ponle las siguientes lineas
# automounting usb flash drives # umask is used to allow every user to write on the stick # we use --sync in order to enable physical removing of mounted memory # sticks -- this is OK for fat-based sticks # I don't automount sda since in my system this is the internal hard # drive depending on your hardware config, usb sticks might be other # devices than sdb* ACTION=="add",KERNEL=="sdb*", RUN+="/usr/bin/pmount --sync --umask 000 %k" ACTION=="remove", KERNEL=="sdb*", RUN+="/usr/bin/pumount %k" ACTION=="add",KERNEL=="sdc*", RUN+="/usr/bin/pmount --sync --umask 000 %k" ACTION=="remove", KERNEL=="sdc*", RUN+="/usr/bin/pumount %k"
recargar las reglas de udev:
udevadm control --reload-rules
NOTA: Si desea que esta configuración sea más tolerante al desmontaje, querrá incluir el -l
para el desmontaje perezoso a punmount
.
ACTION=="remove", KERNEL=="sda*", RUN+="/usr/bin/pumount -l %k"
De pumount
La página de manual de:
-l, --lazy
Lazy unmount. Detach the filesystem from the filesystem hierarchy
now, and cleanup all references to the filesystem as soon as it is
not busy anymore. (Requires kernel 2.4.11 or later.)
IMPORTANT NOTES This option should not be used unless you really
know what you are doing, as chances are high that it will result
in data loss on the removable drive. Please run pumount manually
and wait until it finishes. In addition, pumount will not
luksClose a device which was unmounted lazily.
¿Cómo puedo desactivar el montaje automático y hacer que solo intente montarse cuando hago clic en él desde mi explorador de archivos?
Mediante el uso dconf-editor
para deshabilitar el montaje automático como se describe aquí: Cómo deshabilitar el montaje automático en las preferencias de nautilus.
Alternativamente, ejecute el siguiente comando:
gsettings set org.gnome.desktop.media-handling automount false