[Updated] Installing ADB in Termux Without Root | rajbhx
Install ADB & Fastboot tools in Termux without root.
Supported architectures: ARM / ARM64 only
Check your architecture using: uname -a
Wireless ADB Setup (Android 11+)
- Install ADB tools:
pkg install android-tools - Open Settings → Developer Options → Wireless Debugging
- Tap Pair device and keep the screen open
- In Termux, run:
adb pair IP:PORT - Enter the pairing code shown on screen
- Connect using the displayed IP and port
ADB Wireless is now enabled.
Install ADB in Termux
Silent Installation
apt update > /dev/null 2>&1 && \
apt --assume-yes install wget > /dev/null 2>&1 && \
wget -q https://github.com/MasterDevX/Termux-ADB/raw/master/InstallTools.sh && \
bash InstallTools.sh
Standard Installation
apt update && \
apt install wget && \
wget https://github.com/MasterDevX/Termux-ADB/raw/master/InstallTools.sh && \
bash InstallTools.sh
Uninstall ADB Tools
Silent Uninstallation
apt update > /dev/null 2>&1 && \
apt --assume-yes install wget > /dev/null 2>&1 && \
wget -q https://github.com/MasterDevX/Termux-ADB/raw/master/RemoveTools.sh && \
bash RemoveTools.sh
Standard Uninstallation
apt update && \
apt install wget && \
wget https://github.com/MasterDevX/Termux-ADB/raw/master/RemoveTools.sh && \
bash RemoveTools.sh
Command Explanation
apt update– refreshes package listsapt install wget– installs wget utilitywget InstallTools.sh– downloads the installer scriptbash InstallTools.sh– installs ADB & Fastboot
Related Tools
Instagram Report Tool
Instagram Report Tool 2
Instagram Mass Report Tool