-1

MY screen of Micromax Yureka is broken and I can't see anything, Plus my usb debugging is off. Is there any way to recover data?

Izzy
  • 91,166
  • 73
  • 343
  • 943

1 Answers1

1

A non-device specific approach would be to access your device through adb.

This route requires you to have a custom recovery already installed on your device.

Boot your device into recovery mode. Connect to pc, open a terminal, and execute the following...

adb shell mount /data adb shell mount /system

From there you can, if you need to, pull the entire /data partition [most anyway] Symlinks and some firmware files may error out.

adb pull /data

and so forth. If you have permission denied when pulling,run the following, adb shell mount -o rw,remount /data

No. You can not do this with a stock recovery though Yureka might be different.

moonbutt74
  • 683
  • 5
  • 14