2

I am trying to access adb shell from ubuntu terminal for viewing sqlite db values. I am using the following command:

"cd /home/santhosh/Android/adt-bundle-linux-x86_64-20140321/sdk/platform-tools/adb shell"

But I am getting a response like this : NO Command adb found. I am new to linux terminal. what to do? I tried to put path also. But adb shell not working. What to do?

2
  • 1
    after you go into platform tools use ./adb Commented Apr 21, 2014 at 6:11
  • 1
    you will need your device connected while performing this action Commented Apr 21, 2014 at 6:14

1 Answer 1

3

this wont work for terminal unless you use ./adb or set classpath

so better use

"cd /home/santhosh/Android/adt-bundle-linux-x86_64-20140321/sdk/platform-tools/"

then ./adb shell

Not the answer you're looking for? Browse other questions tagged or ask your own question.