有人能告诉我如何在Ubuntu 11.10终端中调试和使用adb shell命令?我只知道如何在Windows中使用它。
答案 0 :(得分:4)
将平台工具添加到环境变量中,用于
将以下行添加到主文件夹中/home/yourUserName/.bashrc文件的最后一行..
export PATH =“your / path / android-sdk-linux / platform-tools /:$ {PATH}”
答案 1 :(得分:0)
在Ubuntu上,ia32-libs
包在多元宇宙中:
http://packages.ubuntu.com/oneiric/ia32-libs
如果您想使用ia32-libs
软件包,则需要在multiverse
中使用以下某些行启用存储库的/etc/apt/sources.list
部分:
## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team, and may not be under a free licence. Please satisfy yourself as to
## your rights to use the software. Also, please note that software in
## multiverse WILL NOT receive any review or updates from the Ubuntu
## security team.
deb http://us.archive.ubuntu.com/ubuntu/ natty multiverse
deb-src http://us.archive.ubuntu.com/ubuntu/ natty multiverse
deb http://us.archive.ubuntu.com/ubuntu/ natty-updates multiverse
deb-src http://us.archive.ubuntu.com/ubuntu/ natty-updates multiverse
(如果您使用的是较新的发行版,请将 natty 替换为 oneiric 。请确保您与配置中的其他条目一致。)
Debian看起来应该很容易获得:
答案 2 :(得分:0)
我在这里发布我的解决方案ubuntu 11.10 64 bit !!
我错过了一个java6数据包。我安装了那些: sun-java6-bin,sun-java6-jre,sun-java6-jdk,sun-java6-plugin
我错过了插件(最后一个)
我的权限还可以。
如果有问题:
粘贴在这里
SUBSYSTEM ==“usb”,ATTRS {idVendor} ==“####:####”,SYMLINK + =“android_adb”,MODE =“0666”GROUP =“plugdev” TEST ==“/ var / run / ConsoleKit / database”,\ RUN + =“udev-acl --action = $ env {action} -device = $ env {DEVNAME}”
其中####:####替换您在步骤2中复制的内容。 然后保存并关闭文件。
sudo service udev restart
adb kill-server
adb start-server
** 6,7 adb可以在任何文件夹中工作:
一个。 sudo gedit~ / .bashrc 湾把线放在底部:
export PATH=${PATH}:your_path_to_androidsdk/tools
export PATH=${PATH}:your_path_to_androidsdk/platform-tools
要查找到androidsdk的路径,只需导航到它,然后在终端中写入pwd。 将终端的结果粘贴为“your_path_to_androidsdk”。
℃。保存并关闭!确保你不要把“your_path_to_androidsdk”,但你的真实路径!
d。重启(也许注销和登录技巧,但没有测试。)