[Tab S] LineageOS 安裝 **
發表於 : 2021-09-08, 09:38
參考文件:https://wiki.lineageos.org/devices/klimtwifi/install
必要工具與環境設定
安裝adb(Windows) https://wiki.lineageos.org/adb_fastboot_guide.html
1.下載工具
https://dl.google.com/android/repositor ... indows.zip
2.解壓縮
範例:C:\platform-tools
3.將工具所在料夾路徑加入系統環境變數
4.安裝driver
Github:https://github.com/koush/UniversalAdbDriver
官網:https://adb.clockworkmod.com/
5.重啟電腦
連接設備
1.Android開啟USB偵錯
2.將設備接入電腦
3.開啟cmd 輸入 adb devices檢查設備是否上線
(選用)4.設定fastboot
Using fastboot (if your device supports it) should simply involve rebooting to fastboot mode. While in fastboot mode, you can type fastboot devices to verify that your device is being detected.
常用adb指令
adb shell - launches a shell on the device
adb push <local> <remote> - pushes the file <local> to <remote>
adb pull <remote> [<local>] - pulls the file <remote> to <local>. If <local> isn’t specified, it will pull to the current folder.
adb logcat - allows you to view the device log in real-time. You can use adb logcat -b radio to view radio logs, and adb logcat -C to view logs in colour
adb install <file> - installs the given .apk file to your device
必要工具與環境設定
安裝adb(Windows) https://wiki.lineageos.org/adb_fastboot_guide.html
1.下載工具
https://dl.google.com/android/repositor ... indows.zip
2.解壓縮
範例:C:\platform-tools
3.將工具所在料夾路徑加入系統環境變數
4.安裝driver
Github:https://github.com/koush/UniversalAdbDriver
官網:https://adb.clockworkmod.com/
5.重啟電腦
連接設備
1.Android開啟USB偵錯
2.將設備接入電腦
3.開啟cmd 輸入 adb devices檢查設備是否上線
(選用)4.設定fastboot
Using fastboot (if your device supports it) should simply involve rebooting to fastboot mode. While in fastboot mode, you can type fastboot devices to verify that your device is being detected.
常用adb指令
adb shell - launches a shell on the device
adb push <local> <remote> - pushes the file <local> to <remote>
adb pull <remote> [<local>] - pulls the file <remote> to <local>. If <local> isn’t specified, it will pull to the current folder.
adb logcat - allows you to view the device log in real-time. You can use adb logcat -b radio to view radio logs, and adb logcat -C to view logs in colour
adb install <file> - installs the given .apk file to your device