android
Differences
This shows you the differences between two versions of the page.
| Next revision | Previous revision | ||
| android [2016/03/20 12:35] – created michael | android [2021/04/25 07:58] (current) – mduersch | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| - | adb shell ls -R / | + | # check if device is connected in usb debugging mode |
| + | adb devices | ||
| + | |||
| + | # list files from phone | ||
| + | | ||
| + | |||
| + | # file transfer: | ||
| + | adb push $myfile /sdcard/ | ||
| + | adb pull / | ||
| + | |||
| + | # reboot to bootloader | ||
| + | adb reboot bootloader | ||
| + | |||
| + | # check if fastboot works | ||
| + | fastboot devices | ||
| + | |||
| + | # in case it returns "no permissions fastboot" | ||
| + | fastboot oem unlock | ||
| + | |||
| + | # flash an image file to the mobile | ||
| + | fastboot flash recovery your_recovery_image.img | ||
| + | |||
| + | # problems connecting a device? restart adb server | ||
| + | adb kill-server | ||
| + | adb start-server | ||
| + | |||
| + | # sony install images: | ||
| + | EMMA | ||
android.1458477322.txt.gz · Last modified: 2021/04/24 07:38 (external edit)
