fastboot:找不到命令

如果按照如下方法设置adb后:
ADB function
Download the Android SDK.
Update the adb configuration to scan for freescale's pid:
Run the SDK's tools to generate a configure file:

[color=red]android-sdk-linux_86/tools/android update adb[/color]

Modify the files:~/.android/adb_usb.ini, to add freescale vendor id:

[color=red]# ANDROID 3RD PARTY USB VENDOR ID LIST -- DO NOT EDIT.
# USE 'android update adb' TO GENERATE.
# 1 USB VENDOR ID PER LINE.
0x0bb4[/color]

Create a new udev rule file under the PC's /etc/udev/rules.d/ named: imx-android.rules. And fill in the following line into the file:

[color=red]SUBSYSTEM=="usb", SYSFS{idVendor}=="0bb4", MODE="0666"[/color]

Change the new udev rule file's permission:

[color=red]chmod a+r /etc/udev/rules.d/imx-android.rules[/color]

Connect the Android Device
Restart the adb server
[color=red]adb kill-server
adb start-server[/color]
[color=blue]fastboot命令还是不能用,则需要考虑是否有fastbot这个可执行文件是否存在。
一般fastboot可执行文件放在/usr/bin目录下。[/color]

你可能感兴趣的:(Ubuntu,Android)