2

Taken from here: http://www.asoftech.com/articles/android-enable-mass-storage.html

When I try this command:

adb forward tcp:5555 tcp:5555

it says

-bash: adb: command not found"

I already entered in the PATH values.

What am I doing wrong?

Suhaib Janjua
  • 3,538
  • 16
  • 59
  • 73
user2700212
  • 21
  • 1
  • 3

1 Answers1

3

You can try adb command line first. I think you probably didn't add adb path successfully.

Add adb path:

  1. find adb path. For example, my path is Z:\AndroidSDK\platform-tools
  2. do following commands. export PATH=$PATH:/cygdrive/Z/AndroidSDK/platform-tools

You should add path now

MAOXU
  • 329
  • 2
  • 3