Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道如何在插入 USB 笔式驱动器并自动安装后运行脚本直到知道我能够在插入设备后立即运行脚本,但是设备的安装发生在 shell 脚本操作之后结束了
您可以在其中编写 udev 规则/etc/udev/rules.d/并使用RUN类似:
/etc/udev/rules.d/
RUN
KERNEL=="sd?1",ATTRS{serial}=="001CC27F",ACTION=="add",RUN+="/path/to/script.sh'"
注意:script.sh 将以 root 权限运行。
您必须收听适当的 D-Bus 信号,通知该卷已安装。