Install ADB & FastBoot Tools in Termux!
For devices with ARM or ARM64 processors only!
For checking your processro type " uname -a "
For devices with ARM or ARM64 processors only!
For checking your processro type " uname -a "
Full tutorial (Must Have wifi)
pkg install android-tools
Go to settings > developer settings > Wireless Debugging (only android 11 and must enable developer settings)
Click pair then there address in the screen
Don't close it
Then in Termux, do
adb pair (address in screen)
Then enter code in screen
Then connect using the IP and port
Done, you have adb wireless
Instagram report tool 2
Instagram mass report tool
How to install ADB in Termux
Silent installation:
Copy and paste the following command in Termux to silently install Tools:
apt update > /dev/null 2>&1 && apt --assume-yes install
wget > /dev/null 2>&1 && wget
https://github.com/MasterDevX/Termux-ADB/raw/master/InstallTools.sh -q
&& bash InstallTools.sh
Common installation:
Copy and paste the following command in Termux to install Tools with logs
output:
apt update && apt install wget && wget https://github.com/MasterDevX/Termux-ADB/raw/master/InstallTools.sh && bash InstallTools.sh
apt update && apt install wget && wget https://github.com/MasterDevX/Termux-ADB/raw/master/InstallTools.sh && bash InstallTools.sh
How to uninstall
Silent uninstallation:
Copy and paste the following command in Termux to silently remove Tools:
apt update > /dev/null 2>&1 && apt --assume-yes install
wget > /dev/null 2>&1 && wget
https://github.com/MasterDevX/Termux-ADB/raw/master/RemoveTools.sh -q
&& bash RemoveTools.shCommon uninstallation:
Copy and paste the following command in Termux to remove Tools with logs output:apt update && apt install wget && wget https://github.com/MasterDevX/Termux-ADB/raw/master/RemoveTools.sh && bash RemoveTools.sh
Explanation:
Let's break down the command and understand its purpose:
apt update > /dev/null 2>&1: This command updates the package lists and redirects any output to /dev/null, ensuring no information is displayed on the screen.
apt --assume-yes install wget > /dev/null 2>&1: It installs the wget package silently without any prompts or messages using --assume-yes flag and redirects the output to /dev/null.
wget https://github.com/MasterDevX/Termux-ADB/raw/master/InstallTools.sh -q: This retrieves a shell script called InstallTools.sh from the specified URL using wget and -q option ensures quiet mode, suppressing any download progress or output.
bash InstallTools.sh: Finally, it executes the downloaded shell script to install the desired tools or packages.
