Smart TV/TV box adb toolkit download and use tutorial

Android ADB Toolkit

download link:

Teach you how to use powerful adb tools to solve Samsung's black screen FC and other headaches!

First introduce what is ADB: Android ADB Toolkit.zip (554.95 KB, Downloads: 0)

The adb full name Android Debug Bridge, is to play the role of debug bridge.

With the aid of the adb tool, you can manage the status of your device or phone emulator. You can also perform many mobile phone operations, such as installing software, system upgrades, running shell commands, and more. Adb is the bridge between the Android phone and the PC, allowing users to fully operate the phone on the computer.

But when we use Android phones everyday, what is the convenience of the ADB tool to help us?

When we modify the system file and cause the phone to restart infinitely, or accidentally delete desktop software, resulting in the desktop is completely black, or when the boot is immediately fc, adb can play an important role.

Everyday software installation uninstall, system file replacement make adb tools to help us

The following teach you how to use adb

First of all, download adb tool, after downloading, it is recommended to put the individual in the current user's working directory, such as my own is "C: UsersAdministrator", put here, the future operation will be more convenient

How to use adb tool detailed tutorial?

After we put it, we enter the "Start Menu - All Programs - Accessories - Command Prompt", or you can use the shortcut "Win + R", then enter the CMD, can also enter

How to use adb tool detailed tutorial?

The phone is turned on "USB debugging mode" (if you can not open the machine, then it can not be slightly, I opened the debug mode), enter adb devices in the window to copy the above. After successful connection, we can perform various operations by entering commands here! If you want to know all adb commands, you can enter adb in the window, and then enter will prompt.

How to use adb tool detailed tutorial?

Give a few common instructions:

1. Check the device


Adb devices


This command is to view the currently connected device, the android device or emulator connected to the computer will be listed





2. Install the software


Adb install


Adb install : This command installs the specified apk file on the device





3. Uninstall the software


Adb uninstall


Adb uninstall -k


If you add the -k parameter, the software is uninstalled but the configuration and cache files are retained.





4. Enter the shell of the device or emulator:


Adb shell


Through the above command, you can enter the shell environment of the device or emulator. In this Linux shell, you can execute various Linux commands. If you only want to execute a shell command, you can use the following methods:


Adb shell [command]


Such as: adb shell dmesg will print out the kernel debugging information.





5. Publishing port


Any port number can be set as the request port from the host to the emulator or device. Such as:


Adb forward tcp:5555 tcp:8000




6. Send files from the computer to the device


Adb push


Use the push command to copy the files or folders on the local computer to the device (cell phone)




7. Download files from your device to your computer


Adb pull


Use the pull command to copy files or folders from your device (phone) to your local computer



8, check the bug report


Adb bugreport



9, record wireless communication log


In general, there are a lot of wireless communication logs, there is no need to record at runtime, but we can still set the record by command:


Adb shell


Logcat -b radio





10, get the device ID and serial number


Adb get-product


Adb get-serialno


Adb shell


For example: extract and push framework-res.apk.


Extract the framework-res.apk on the system


After entering the "Command Prompt", we first perform an "adb devices" to confirm whether it is connected


Then, perform "adb remount" again


Then, we can extract and execute "adb pull /system/framework/framework-res.apk D:" according to the format of the seventh point above.


Of course the following path, D: is your favorite, but pay attention to the space


Adb devices adb remount adb pull /system/framework/framework-res.apk D: just copy the code


This D: there will be more framework-res.apk this file


Re-push "framework-res.apk"


We use the push instruction and follow the above sixth input to execute "adb push D:framework-res.apk /system/framework"


Here we must not forget to modify the permissions, execute "adb shell chmod 644 /system/framework/framework-res.apk"


Of course, we still need to restart and execute "adb reboot"



How to use adb tool detailed tutorial?

Adb devices adb remount adb adb push D: framework-res.apk /system/framework adb shell chmod 644 /system/framework/framework-res.apk


Posted on