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.
当您在 adb shell 中运行二进制文件时,如果您退出 adb,则该过程也结束了。
那么有没有办法在没有 adb 帮助的情况下运行二进制文件?
如果您的设备上安装了busybox,那么您可以使用'busybox nohup [your binary] &' 命令。这样,即使您关闭 adb,它也会继续运行
这对我有用:
sh -c "your-binary-or-command" &
然后你可以通过按 ctrl+D 退出 adb shell,它会继续运行。
然后你可以通过返回 adb shell 来杀死它
kill -s KILL <PID>