Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I downloaded the ADT Bundle and now cannot run sqlite from tools directory. The other

red-planet@desktop:~/Adt-bundle/sdk/tools$ ls 
adb_has_moved.txt  ddms            emulator64-mips  etc1tool         lint          proguard           templates
android            dmtracedump     emulator64-x86   hierarchyviewer  mksdcard      source.properties  traceview
ant                draw9patch      emulator-arm     hprof-conv       monitor       sqlite3            uiautomatorviewer
apkbuilder         emulator        emulator-mips    jobb             monkeyrunner  support            zipalign
apps               emulator64-arm  emulator-x86     lib              NOTICE.txt    systrace
red-planet@desktop:~/Adt-bundle/sdk/tools$ sqlite3 
bash: /home/red-planet/Adt-bundle/sdk/tools/sqlite3: No such file or directory
red-planet@desktop:~/Adt-bundle/sdk/tools$ 

The other executable files can be easily run. What is the reason of the trouble?

share|improve this question

2 Answers

add ./ before executable files in linux. try this

./sqlite3
share|improve this answer
It's taken no effect. red-planet@desktop:~/Adt-bundle/sdk/tools$ ./sqlite3 bash: ./sqlite3: No such file or directory red-planet@desktop:~/Adt-bundle/sdk/tools$ – Red Planet Dec 29 '12 at 13:59
up vote 0 down vote accepted

The solution.

I found the solution. I am working on 64-bit Ubuntu and had to make 64-bit applications work on the 64-bit operating system.

sudo apt-get install ia32-libs https://help.ubuntu.com/community/32bit_and_64bit

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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