ADB Android Debug Bridge 5555
1. Install ADB on Your System
sudo apt install adb
2. Connect to a Target Device
adb connect 192.168.101.79
3. List Devices
adb devices
4. Start a Shell on the Device
adb shell
5. Eliminate Screen Lock (Uninstall App Lock)
adb uninstall com.martianmode.applock
Replace com.martianmode.applock
with the actual package name of the screen lock app if it's different.
6. Additional Useful ADB Commands
Reboot the Device:
adb reboot
Install an APK on the Device:
adb install path_to_your_apk_file.apk
Pull Files from the Device:
adb pull /path/on/device /path/on/host
Push Files to the Device:
adb push /path/on/host /path/on/device
Logcat (View Logs):
adb logcat
Start an App (e.g., opening the browser):
adb shell am start -n com.android.browser/com.android.browser.BrowserActivity
For a full list of ADB commands, refer to this ADB Command Cheat Sheet.
Last updated