Sedikit Info Seputar
[Guide] How to 'ADB Terminal' and Installation
Terbaru 2017
- Hay gaes kali ini team Sniffing Blog, kali ini akan membahas artikel dengan judul [Guide] How to 'ADB Terminal' and Installation, kami selaku Team Sniffing Blog telah mempersiapkan artikel ini untuk sobat sobat yang menyukai Sniffing Blog. semoga isi postingan tentang
Artikel adb drivers for mtk,
Artikel adb drivers windows,
Artikel install adb drivers windows 10,
Artikel universal adb drivers for mtk, yang saya posting kali ini dapat dipahami dengan mudah serta memberi manfa'at bagi kalian semua, walaupun tidak sempurna setidaknya artikel kami memberi sedikit informasi kepada kalian semua. ok langsung simak aja sob
Judul:
Berbagi Info Seputar
[Guide] How to 'ADB Terminal' and Installation
Terbaru
link: [Guide] How to 'ADB Terminal' and Installation
Berbagi Artikel Tentang [Guide] How to 'ADB Terminal' and Installation Terbaru dan Terlengkap 2017
"ADB" is the most important tool for almost any developer out there no matter what device they use. But still many people do not know the uses of adb and how to use it for their advantage no matter what the situation is.
Stuck on bootloop ? Stuck on Animation ? Stuck on Recovery and storage does not mount ? Need to push or pull files ? and damn the list can go on and on forever. ADB has the solution for all of this.
If you have some adb commands you use daily then comment them down below.
- Download 5 sec ADB Installer and Install it. Press "Y" for every choice
- Install the Modded PDA Net+ - Just follow the steps of the Installer
- After everything is done. Press "Windows button+R"
- Type "cmd" and press enter
- Connect your device with USB Debugging ON and type "adb devices" in CMD without ""
- If device is detected then everything is OK
- Type "chmod 644 filepath"
- Example "chmod 644 /system/build.prop"
- Replace 644 with correct permissions. For build.prop and other system files it is usually 644
- In recovery go to mounts and storage and mount all the partitions
- In terminal type "adb shell"
- Type "cd path to your SD card"
- Example for most devices "cd /storage/sdcard1/
- Type "ls" now you will be able to see all the contents of SD card
- Type "exit" and exit adb shell
- Type "adb push filename.zip /storage/sdcard1/" and wait for it to complete, a message will be displayed once it is complete
4. Stuck at bootlogo or bootanimation ? You can take a logcat as long as the device is detected.
- If device is detected then type "adb logcat > logcat.txt"
- After about 5-10 seconds press "Ctrl+C"
Note : You will now get the logcat.txt in the directory in which cmd is opened
- Type "adb pull file location"
- Example "adb pull /system/build.prop"
- Example 2 "adb pull /system/framework/framework-res.apk"
6. To quickly reboot your device to different modes use the following commands :
- To reboot into recovery "adb reboot recovery"
- To reboot into bootloader "adb reboot bootloader"
- Type "adb shell"
- Now your can execute and command from the PC to device