ADB Android Debug Bridge 5555
1. Install ADB on Your System
sudo apt install adb2. Connect to a Target Device
adb connect 192.168.101.793. List Devices
adb devices4. Start a Shell on the Device
adb shell5. Eliminate Screen Lock (Uninstall App Lock)
adb uninstall com.martianmode.applockReplace 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 rebootInstall an APK on the Device:
adb install path_to_your_apk_file.apkPull Files from the Device:
adb pull /path/on/device /path/on/hostPush Files to the Device:
adb push /path/on/host /path/on/deviceLogcat (View Logs):
adb logcatStart 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