I have a Chinese tablet named Quest. I have accidentally repeated the pattern lock more than 5 times. Now I have also forgotten the email address.
So for a factory reset of my tablet, I simply booted it into recovery mode. But it shows an Android bot lying with a red exclamation mark. After spending hours, I found a shortcut i.e., Vol + and Power to access the recovery menu. But my tablet doesn't go to the recovery menu even when I pressed the keys.
So I simply connected my tablet to my PC via USB and installed drivers. In adb command prompt, I typed adb devices
. Now my tablet is listed as 20110301 recovery
. I can simply use only adb pull
, adb push
, and reboot
commands. But I can't access adb shell
to unlock my tablet. it simply says exec '/system/bin/sh' failed: No such file or directory (2)
.
What can I do?
fastboot -w
to wipe all userdata and cache (which basically is the same as a factory-reset). – Izzy Nov 01 '13 at 13:26/system/bin/sh
is no directory, it's an executable (the shell interpreter). If it wasn't found, it's rather likely that/system
wasn't mounted. So if you created thebin
subdirectory, this could prevent future mounts completely (as the mountpoint must be empty, but now contains that directory). Can you run themount
command? How did you create that directory without shell access? – Izzy Nov 02 '13 at 08:01