![Reglas de Udev para montaje USB y error en modo de gráficos bajos](https://rvso.com/image/1127601/Reglas%20de%20Udev%20para%20montaje%20USB%20y%20error%20en%20modo%20de%20gr%C3%A1ficos%20bajos.png)
Tengo un archivo que contiene el contenido a continuación.
KERNEL!="sd[a-z][0-9]", GOTO="media_by_label_auto_mount_end"
# Import FS infos
IMPORT{program}="/sbin/blkid -o udev -p %N"
# Get a label if present, otherwise specify one
ENV{ID_FS_LABEL}!="", ENV{dir_name}="%E{ID_FS_LABEL}"
ENV{ID_FS_LABEL}=="", ENV{dir_name}="usbhd-%k"
# Global mount options
ACTION=="add", ENV{mount_options}="relatime"
# Filesystem-specific mount options
ACTION=="add", ENV{ID_FS_TYPE}=="vfat|ntfs", ENV{mount_options}="$env{mount_options},utf8,gid=100,umask=002"
# Mount the device
ACTION=="add", RUN+="/bin/mkdir -p /home/my_dir_name", RUN+="/bin/mount -o $env{mount_options} /dev/%k /home/my_dir_name"
# Clean up after removal
ACTION=="remove", ENV{dir_name}!="", RUN+="/bin/umount -l /home/my_dir_name", RUN+="/bin/rmdir /home/my_dir_name"
# Exit
LABEL="media_by_label_auto_mount_end"
Y cuando lo instalo /etc/udev/rules.d/file.rules
y reinicio la computadora, aparece este mensaje de error:
The system is running in low-graphics mode.
Una vez que elimine este archivo, puedo iniciar normalmente. ¿Alguien tiene alguna idea sobre cómo puedo conservar este archivo para montar cada USB conectado y poder iniciar sesión sin este error?