開啟系統介面/軟體介面
# 在 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"