Android真機上安裝busybox

1 adb shell; cat /proc/cpuinfo;   //查看對應的cpu architecture版本號,比如我的是7

2 下載busybox binaries文件 https://busybox.net/downloads/binaries/1.21.1/busybox-armv7l

3 修改下載下來的busybox-armv7l爲busybox

4 adb root;adb remount; chmod 755 /system/xbin; adb push busybox /system/xbin //到這一步就可以使用find  grep等命令,用法busybox find / busybox grep

5 爲了不用每次都在命令之前加上busybox,執行 cd /system/xbin; ./busybox --install .  // busybox 之前的./很重要,否則會報 --install : applet not found

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章