打开系统界面/软件界面
# 在 EON 的 shell 中运行
# 打开系统设置
am start -a android.settings.SETTINGS
# 关闭系统设置 (kill)
ps aux | grep settings| grep -v grep|awk '{print $1}' |xargs kill
# 打开开发者选项
am start -a android.settings.APPLICATION_DEVELOPMENT_SETTINGS
am start -n ai.comma.plus.offroad/.MainActivity
软件包管理
# 显示软件包列表
pm list packages -f
#卸载软件包
pm uninstall ai.comma.plus.offroad
#安装软件包
pm install /sdcard/apk/ai.comma.plus.offroad.apk
git代理设置
# http 代理地址 192.168.1.101:1087
# 代理可以是设置在同局域网的电脑上,也可以是公网服务器上
git clone https://github.com/commaai/openpilot.git --config "http.proxy=192.168.1.101:1087"
标签:git,界面,ai,am,comma,软件包,软件,打开
From: https://www.cnblogs.com/gnz48/p/18459572