adb command not found after installed it

I have install adb from terminal. But when I type "adb version" it's not found. Can anyone help me about this problem?

enter image description here

4

2 Answers

Use this command for adb installation:

apt install android-tools-adb
2
  1. Download the Android SDK Platform Tools ZIP file for Linux from this link.
  2. Move the file to the location you want to store adb using the following command sudo mv filename.zip /wanted/location/.
  3. Extract the ZIP with unzip filename.zip command.
  4. Enter to platform-tools/ directory with cd platform-tools/
    • if you are not in the extracted directory use the full PATH cd /home/user/directory/platform-tools
  5. Now you can use the adb tool from inside the platform-tools directory 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
1

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like