当我将USB插入Raspberry Pi 3 B型时,我正在尝试运行程序。
我在下面引用了两个 https://hackaday.com/2009/09/18/how-to-write-udev-rules/ https://unix.stackexchange.com/questions/65891/how-to-execute-a-shellscript-when-i-plug-in-a-usb-device
sudo nano /etc/udev/rules.d/81-usb.rules
KERNEL=="sda1", RUN+="echo Hello World > /home/pi/hello.txt"
sudo /etc/init.d/udev restart
我几乎尝试了所有变体,重新启动了很多,以防万一我丢失了一些东西。但是什么都行不通。
感谢阅读。
答案 0 :(得分:0)
谢谢。 无论如何,我在回答自己的问题。
我从
更改了KERNEL=="sda1", RUN+="echo Hello World > /home/pi/hello.txt"
到
KERNEL=="sda1", RUN+="/home/pi/test.sh"
也做了
chmod +x /home/pi/test.sh