Trying to run some binaries from Android #116
hex-4d5a9000
started this conversation in
Show and tell
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I tried to run some binaries from Android-x86_64-5.1-rc1. My host is Cygwin64 on Windows 10.
Here are some results:
Shell utilities like
ls
andps
run without any problem:Unfortunately,
dalvikvm64
doesn't run:However it prints help information:
Here are some tips if you want to achieve the same result:
make install
)system
in your Cygwin installation folder (e.g. C:\cygwin64\system).fsutil.exe file SetCaseSensitiveInfo C:\cygwin64\system
. This will make path handling in the folder to be case sensitive, so that two files from the image with only case diffierece on their names won't overwrite each other when extracted.system.sfs
inandroid-x86_64-5.1-rc1.img
to the system folder (I used 7-zip for this step).export PATH=/sbin:/system/sbin:/system/bin:/system/xbin:/vendor/bin:/vendor/xbin:/sbin:/system/sbin:/system/bin:/system/xbin:/vendor/bin:/vendor/xbin:/usr/local/bin:/usr/bin:$PATH
under Cygwin.blink sh
.Beta Was this translation helpful? Give feedback.
All reactions