linux - Installing android-sdk or adt-bundle on Ubuntu 12.04 -
linux - Installing android-sdk or adt-bundle on Ubuntu 12.04 -
so on previous laptop i've installed android-sdk-linux
, eclipse
separately without adt-bundle
, without issues whatsoever. also, installed under home
directory.
now have new laptop (clean slate) start with, wanted seek , install adt-bundle correct/conventional directory (which understand /usr/local/
).
but after extracting bundle /usr/local/
weird issues adb
not beingness executable, etc. opening eclipse yields lot of errors regarding sdk
, adt
, , adb
.
what right method of doing this? step-by-step or otherwise comprehensive set of methods appreciated.
also, there reason why should consider installing android-sdk-linux
, eclipse
separately instead of using adt-bundle
?
thanks in advance :). help me larn more linux filesystems , administrations little bit too!
it seems problem in linux filesystem permissions of folder. in case of home directory owner of files user, in case of /usr/local/
owner root. should seek alter owner of folder:
chown -r <owner_name>:<owner_group> <your_dir>
as reasons install sdk , eclipse separately, don't think you'll find critical one. using bundle it's easier install work android (i think eclipse in case configured, not know exactly because i've never used approach).
android linux ubuntu
Comments
Post a Comment