adb fastboot 命令總結

2021-07-25 08:01:31 字數 1442 閱讀 8362

安裝乙個apk,執行以下命令:

$ adb install // 如: adb install demo.apk

如果不是當前目錄,則後面要跟路徑名:

$ adb install /users/storm/temp/demo.apk

保留資料和快取檔案,重新安裝apk:

$ adb install -r demo.apk

安裝apk到sd卡:

$ adb install -s demo.apk

直接解除安裝:

$ adb uninstall // 如:adb uninstall com.lfb.demo

重啟$ adb reboot

檢視螢幕解析度

$ adb shell wm size

physical size: 1080×1920

檢視螢幕密度

$ adb shell wm density

physical

density:

480

檢視連線裝置

$ adb devices

list

of devices attached

vsjrqcrcy9rwpbhq device

獲取模擬器中的檔案:

$ adb pull

向模擬器中寫檔案:

$ adb push

獲取管理員許可權:

$ adb root

重新掛載系統分割槽,使系統分割槽重新可寫

$ adb remount

進入模擬器的shell模式:

$ adb shell

退出shell

$ exit

刪除系統應用:

$ adb remount //重新掛載系統分割槽,使系統分割槽重新可寫

$ adb shell

$ rm *.apk

$ rm -rf

//-rf引數表示遞迴強制刪除

$ adb  devices

//進入fastboot模式

$ adb reboot bootloader

$ fastboot devices

//開始燒寫

$ fastboot flash system system.img檔案

//重啟

$ fastboot reboot

救磚必備技巧 ADB ,fastboot

救磚必備技巧 adb fastboot 2011年08月09日 b adb全稱android debug bridge,是android sdk裡的乙個工具,用這個工具可以直接操作管理android模擬器或者真實的andriod裝置 如g1手機 它的主要功能有 執行裝置的shell 命令列 管理模擬...

linux命令總結mpstat命令

mpstat是multiprocessor statistics的縮寫,是實時系統監控工具。其報告與cpu的一些統計資訊,這些資訊存放在 proc stat檔案中。在多cpus系統裡,其不但能檢視所有cpu的平均狀況資訊,而且能夠檢視特定cpu的資訊。mpstat最大的特點是 可以檢視多核心cpu中...

linux命令總結free命令

free 命令是乙個顯示系統中空閒和已用記憶體大小的工具。free 命令的輸出和 top 命令相似。大多數linux發行版已經含有 free 命令。想要執行,只需在控制台輸入free 即可。不帶選項執行會顯示乙個以kb為單位的預設輸出。root finish scripts free total u...