On some Android device, I only can run "echo", "cd", "ls"... this kind of Linux command in adb shell, but when I run
tar -cvf //mnt/sdcard/BackUp1669/apk/test.tar /mnt/sdcard/test.apk
(or "cp" etc.) it returns:
sh: tar: not found
Why? And is it impossible to run Linux command on Android.
ps. some device support the above command.
Many thanks.
Actually, I want to copy a file from /data/data folder to sdcard, I got su and use
int timeout = 1000;
String command = "tar -cvf /" + Environment.getExternalStorageDirectory() + "/cp/"
+ packageName + ".tar" + " " + path;
DataOutputStream os = new DataOutputStream(process.getOutputStream());
BufferedReader is = new BufferedReader(new InputStreamReader(new DataInputStream(
process.getInputStream())), 64);
String inLine;
try {
StringBuilder sbCommand = new StringBuilder();
sbCommand.append(command).append(" ");
sbCommand.append("\n");
os.writeBytes(command.toString());
if (is != null) {
for (int i = 0; i < timeout; i++) {
if (is.ready())
break;
try {
Thread.sleep(5);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
if (is.ready()) {
inLine = is.readLine();
} else {
}
}
} catch (IOException e) {
e.printStackTrace();
}
It always blocks in “is.ready()”, and I changed it to process.waitfor(); it also blocks, too. Why?