准备工作

打开 USB 调试

进入 “设置->关于手机” 连续点击版本号, 直到有提示开启了"开发人员选项"

进入 “设置->系统和更新->开发人员选项”, 打开 USB 调式, 顺便可以把"自动系统更新"关了

下载 adb 工具

官方地址: https://developer.android.google.cn/studio/releases/platform-tools

根据 PC 平台下载相应的 adb(android debug bridge) 工具

$ unzip platform-tools_r33.0.3-linux.zip

Archive: platform-tools_r33.0.3-linux.zip

inflating: platform-tools/NOTICE.txt

inflating: platform-tools/adb

inflating: platform-tools/dmtracedump

inflating: platform-tools/e2fsdroid

inflating: platform-tools/etc1tool

inflating: platform-tools/fastboot

inflating: platform-tools/hprof-conv

inflating: platform-tools/make_f2fs

inflating: platform-tools/make_f2fs_casefold

inflating: platform-tools/mke2fs

inflating: platform-tools/mke2fs.conf

inflating: platform-tools/sload_f2fs

extracting: platform-tools/source.properties

inflating: platform-tools/sqlite3

inflating: platform-tools/lib64/libc++.so

$ ls

platform-tools platform-tools_r33.0.3-linux.zip

$ cd platform-tools/

jianghuixin@Vostro-3670:~/Downloads/Tmp/platform-tools 10:11:04

$ ./adb --help

连接 PC 与手机

选择"传输文件"的连接选项

卸载预装软件

查看设备

adb devices 命令用于查看 PC 所连接的设备

$ ./adb devices

* daemon not running; starting now at tcp:5037

* daemon started successfully

List of devices attached

H5XVB20605005176 unauthorized

手机端弹出"是否允许 USB 调试", 选中始终允许调试并确定, 再次查看设备

$ ./adb devices

List of devices attached

H5XVB20605005176 device

查看软件列表

adb shell pm list package -s 获取已安装的应用, 输出太多仅展示部分结果

$ ./adb shell pm list package -s

package:com.android.cts.priv.ctsshim

package:com.huawei.camera

package:com.huawei.camerakit.impl

package:com.huawei.synergy

package:com.huawei.android.launcher

package:com.huawei.hms.dupdateengine

package:com.android.providers.telephony

package:com.huawei.harmonyos.foundation

package:com.huawei.androidx

...

卸载应用

adb shell pm uninstall --user 0 <应用包名称> 卸载指定的应用

如果输入的应用名称有误, 则会提示“Failure [not installed for 0]”

卸载百度输入法, 先进入"设置->系统和更新->语言和输入法", 关闭安全输入

./adb shell pm uninstall --user 0 com.baidu.input_huawei

卸载华为浏览器, 包名为 “com.huawei.browser” 或者 “com.android.browser”

./adb shell pm uninstall --user 0 com.huawei.browser

卸载华为音乐, 包名为 “com.huawei.music” 或者 “package:com.android.mediacenter”

./adb shell pm uninstall --user 0 com.huawei.music

卸载华为视频

./adb shell pm uninstall --user 0 com.huawei.himovie

卸载其他软件

com.huawei.phoneservice: 服务 com.huawei.ohos.famanager: 服务中心 com.huawei.bd: 用户体验计划 com.huawei.hifolder: 精品推荐 com.huawei.skytone: 天际通 com.huawei.hicar: HiCar智行 com.huawei.gameassistant: 游戏空间 com.huawei.hwdetectrepair: 智能检测 com.huawei.videoeditor: 花瓣剪辑

查看原文