Description
ADB stands for Android Debug Bridge, a command-line tool developed by Google for communicating with and debugging Android devices. Although designed for Android devices, ADB can also be used for debugging and log viewing in some systems based on the Linux kernel.
For example, in the Ubuntu24 system, although serial and SSH are mainly used for debugging and management, the system has ADB service integrated, so ADB can also be used for debugging.
Installing ADB Tools
Official ADB tools can be downloaded from Android Developer Official Website🌐, extract to the location you want to store them.
Use our provided ADB tool package, download link is in Network Disk🚀 at Development Tools/ADB Tools/platform-tools-latest-windows.zip.
And extract it to my own E:\adb\platform-tools directory:
Then we need to add the platform-tools directory to the system's PATH environment variable:




platform-tools directory
Finally, click OK all the way to save the settings.
Testing
Press Win + R to open the Run window, enter cmd and press Enter to open the command line window:
Then enter the following command to test if ADB is installed successfully:
adb versionUsing ADB Shell
Connect the development board's OTG Type-C interface to the computer using a data cable for ADB debugging:
After the development board's system is fully started, you can see the related device in Device Manager:
Enter the following command in the command line window to enter ADB Shell mode:
adb shell