Udev-Regeln für USB-Mounting und Low Graphics Mode-Fehler

Udev-Regeln für USB-Mounting und Low Graphics Mode-Fehler

Ich habe eine Datei mit dem folgenden Inhalt

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"

Und wenn ich es einlege /etc/udev/rules.d/file.rulesund den Computer neu starte, erhalte ich diese Fehlermeldung:

The system is running in low-graphics mode.

Sobald ich diese Datei lösche, kann ich normal booten. Hat jemand eine Idee, wie ich diese Datei behalten kann, um jedes angeschlossene USB-Gerät zu mounten und mich ohne diesen Fehler anmelden zu können?

verwandte Informationen