1# debugging monitor 2RUN+="socket:/org/kernel/udev/monitor" 3 4# run a command on remove events 5ACTION=="remove", ENV{REMOVE_CMD}!="", RUN+="$env{REMOVE_CMD}" 6 7# ignore the events generated by virtual consoles 8KERNEL=="ptmx", OPTIONS+="last_rule" 9KERNEL=="console", OPTIONS+="last_rule" 10KERNEL=="tty" , OPTIONS+="last_rule" 11KERNEL=="tty[0-9]*", OPTIONS+="last_rule" 12KERNEL=="pty*", OPTIONS+="last_rule" 13SUBSYSTEM=="vc", OPTIONS+="last_rule" 14 15