使用 udev 规则插入 Android 设备时自动启用 USB 网络共享

使用 udev 规则插入 Android 设备时自动启用 USB 网络共享

当我的设备连接时,我可以运行以下命令来启用 USB 网络共享

adb shell service call connectivity 33 i32 1 s16 text

并禁用它

adb shell service call connectivity 33 i32 0 s16 text

我已经测试了这两个命令并且它们正在工作。

我想每当我的设备连接到我的电脑时执行第一个命令。我知道可以使用 udev 规则来完成,但我不知道如何做。

答案1

连接或移除 USB 设备时运行特定脚本的 UDEV 规则可以通过在 /etc/udev/rules.d 下定义规则来实现。

这篇文章应该对你有帮助:

https://www.thegeekdiary.com/how-to-run-a-script-when-usb-devices-is-attached-or-removed-using-udev/

相关内容