0

我正在尝试在不使用独立安装程序的情况下安装 ADT。借助本指南http://forum.xda-developers.com/showthread.php?t=2302780

我正在使用 ubuntu 13.04 ,所以当我尝试调用 adb 或 fastboot 时,它总是以权限被拒绝而告终。

    parthiban@upk-sys:~$ adb
    bash: /media/parthiban/New Volume1/idea-IC-129.1359/android-sdk-linux/platform- tools/adb: Permission denied    
    parthiban@upk-sys:~$ fastboot
    bash: /media/parthiban/New Volume1/idea-IC-129.1359/android-sdk-linux/platform-tools/fastboot: Permission denied                      

我已按照该指南中的说明编辑了 .bashrc。任何想法 ??

4

1 回答 1

2

Seems like your device needs to be accessed by a privileged user. Simply put 'sudo' in front of the command adb or fastboot. Or you could try and restart the adb server with the root account. Like sudo -s adb kill-server adb start-server Afterwards you should be able to call adb (or fastboot)

于 2013-12-09T16:35:07.957 回答