Skip to main content

Posts

Showing posts from 2025

UDEMY free courses on Linux

  The below courses are free courses available on UDEMY.      1. Intro to Linux https://www.udemy.com/course/intro-to-linux/ 2. Intro to Linux Shell Scripting (Free course) https://www.udemy.com/course/linux-shell-scripting-free/ 3. Linux for Beginners: Crash Course https://www.udemy.com/course/linux-for-beginners-crash-course/ 4. Learn The Linux Command Line: Basic Commands https://www.udemy.com/course/command-line/ 5. Linux Network Troubleshooting Commands (CCNA/DevOps) https://www.udemy.com/course/linux-network-troubleshooting-commands-devops/ 6. Superb Linux Bootcamp – Become Certified Linux Professional https://www.udemy.com/course/superb-linux-bootcamp-become-certified-linux-professional/ 7. Linux Command Line for Beginners https://www.udemy.com/course/linux-command-line-basics/ 8. Introduction to Linux : crash course – 2025 https://www.udemy.com/course/introduction-to-linux-crash-course/ 9. Linux Tutorials and Projects (Free) https://www.udemy.com/course/linux...

How to disable or disconnect ADB over WiFi

ADB over Wi-Fi leaves your device open to remote connections, which can be a security risk on untrusted networks. Disabling it restores the traditional USB debugging mode and ensures that your device remains secure. 1 Revert to USB Debugging           Connect via USB: If your device is currently connected over Wi-Fi, reattach the USB cable. This initial connection is essential to safely switch debugging modes.              Open Terminal/Command Prompt:  Launch your terminal or command prompt on your computer.              Switch Back to USB Mode: Enter the following command                          adb usb          2. Disconnect the Wireless Session             If you’re still in a Wi-Fi debugging session, you can explicitly disconnect by run...

How to set up and use ADB over Wi-Fi

Android Debug Bridge (ADB) is a versatile tool that allows developers to communicate with Android devices for debugging and other tasks. Traditionally, ADB connections require a USB cable, but it's possible to establish a connection over Wi-Fi, offering greater flexibility. This guide provides step-by-step instructions to set up ADB over Wi-Fi and outlines common issues you might encounter. Prerequisites Android Device : Ensure your device is running Android 11 or later. Toxigon Computer : A PC with ADB installed. You can download the latest version of the Android SDK Platform Tools from the official Android developer website . USB Cable : Required for the initial setup. Wi-Fi Network : Both your Android device and computer must be connected to the same Wi-Fi network. Steps to set up ADB over Wi-Fi Enable Developer Options on Your Android Device : Navigate to Settings > About phone . Tap on Build number seven times until you see a message confirming that Developer Options are e...