Skip to content

Instantly share code, notes, and snippets.

@nevermoe
Forked from alsanchez/install_busybox.sh
Last active October 16, 2018 09:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nevermoe/444564cf2a16a7217f2503396b6f362b to your computer and use it in GitHub Desktop.
Save nevermoe/444564cf2a16a7217f2503396b6f362b to your computer and use it in GitHub Desktop.
Install busybox on the x86 Android emulator
#!/bin/bash
wget "https://busybox.net/downloads/binaries/1.26.2-i686/busybox" -O /tmp/busybox
adb push /tmp/busybox /data/data/busybox
adb shell "mount -o remount,rw /system && mv /data/data/busybox /system/bin/busybox && chmod 755 /system/bin/busybox && /system/bin/busybox --install /system/bin"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment