Home > Article > Operation and Maintenance > adb shell what does it mean
What does adb shell mean?
adb shell is the terminal shell connected to our KF (android).
Recommended: "linux tutorial"
ADB: Android debug bridge.
Android phones are actually based on the Linux system .
In the settings of your android phone, check Settings->Applications->Development->USB debugging to allow the PC to remotely log in to the Linux system of your phone through the adb shell command.
At this time, connect the android phone to the computer through a USB cable, and type the adb shell command in the dos command line on the computer to remotely log in to the linux system of the android phone.
After successfully logging in to the Android phone system, you can run some simple Linux commands, such as 'ls' to view the files in the directory, 'cd xxx' to enter the xxx directory, 'exit' to log out, etc. wait.
The above is the detailed content of adb shell what does it mean. For more information, please follow other related articles on the PHP Chinese website!