-
-
Save Rodrirokr/3815aeb1a8e8d9dfe8874dfedcc89eb7 to your computer and use it in GitHub Desktop.
Install busybox on the x86 Android emulator
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
wget --no-parent --no-host-directories --cut-dirs 3 -r https://busybox.net/downloads/binaries/1.30.0-i686/ -P /tmp/busybox | |
adb push /tmp/busybox /data/data/busybox | |
adb shell "mount -o rw,remount /system && mv /data/data/busybox /system/bin/busybox && chmod 755 /system/bin/busybox/busybox && /system/bin/busybox/busybox --install /system/bin" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment