I have install adb from terminal. But when I type "adb version" it's not found. Can anyone help me about this problem?
42 Answers
Use this command for adb installation:
apt install android-tools-adb 2 - Download the Android SDK Platform Tools ZIP file for Linux from this link.
- Move the file to the location you want to store
adbusing the following commandsudo mv filename.zip /wanted/location/. - Extract the ZIP with
unzip filename.zipcommand. - Enter to
platform-tools/directory withcd platform-tools/- if you are not in the extracted directory use the full PATH
cd /home/user/directory/platform-tools
- if you are not in the extracted directory use the full PATH
- Now you can use the
adbtool from inside theplatform-toolsdirectory using./adb [options]for example./adb version.
- This solution is given from XDA-DEVELOPERS forum.
- For more information you can look in the original manual on this link