Pull special files using ADB

I have an Android root device and I need to pull everything out on a PC.

The first attempt in DDMS File explorer did not work, it freezes and must be forced to close.

Repeating in powershell with adb pull / skips "special files" is there a way to pull everything, including special files?

EDIT: I tried to boot in Engineer and Meta mode, and I tried to copy from the shell Without success

+6
source share
1 answer

2 things:

  • Try loading your phone into FastBoot, and then run the adb pull command. Some of the files can be used while the phone is running and cause them to be skipped.

  • I did not do this personally, but I would try to use adb to access the shell on the phone and copy the files that were skipped.

     adb shell 
0
source

Source: https://habr.com/ru/post/954679/


All Articles