Linux 安装 adb环境

依然范特西╮ 提交于 2020-08-15 04:47:52

一、 查看系统是否安装有adb

adb或者adb version

二、通过apt-get安装adb

1. 安装adb
sudo apt-get install android-tools-adb
2. 查看adb是否安装成功
adb version

三、出现error:“Unable to locate package android-tools-adb”

解决方法:

1、开权限:

mount -o remount rw /

mount -o remount rw /system

2、打开文件/etc/apt/sources.list

sudo nano /etc/apt/sources.list 

3、在该文件中像下面这样添加一行:

deb http://ftp.de.debian.org/debian sid main 

4、然后,执行:

sudo apt-get update
sudo apt-get install android-tools-adb
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!