本文介绍了如何运行android系统中的二进制无亚行外壳的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

当您在亚行的shell中运行二进制,如果你退出亚行,那么这个过程结束了。

when you run a binary in adb shell, if you exit adb, then the process is over too.

那么,有没有一种方法,没有亚行的帮助下运行的二进制?

So is there a way to run a binary without adb's help?

推荐答案

如果您已经安装在设备上busybox的,那么你可以使用'的busybox的nohup [二进制文件]放大器;'命令。这样,它会继续运行,即使您关闭亚行

If you have busybox installed on your device, then you could use 'busybox nohup [your binary] &' command. This way it will keep running even after you close adb

这篇关于如何运行android系统中的二进制无亚行外壳的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-29 06:51