关于手机" 连续点击版本号, 直到有提示开启了"开发人员选项"下载 adb 工具连接 PC 与手机adb devices 命令用于查看 PC 所连接的设备卸载百度输入法 卸载华为浏览器, 包名为 "com.huawei.browser" 或者 "com.android.browser" 卸载华为音乐, 包名为 "com.huawei.music" 或者 "package:com.android.mediacenter"_鸿蒙系统怎么删除自带软件">
当前位置:   article > 正文

ubuntu 使用 adb 工具卸载鸿蒙系统预装软件_鸿蒙系统怎么删除自带软件

鸿蒙系统怎么删除自带软件
准备工作
  1. 打开 USB 调试

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

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

  1. 下载 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
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  1. 连接 PC 与手机

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


卸载预装软件
  1. 查看设备

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

$ ./adb devices
* daemon not running; starting now at tcp:5037
* daemon started successfully
List of devices attached
H5XVB20605005176	unauthorized
  • 1
  • 2
  • 3
  • 4
  • 5

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

$ ./adb devices
List of devices attached
H5XVB20605005176	device
  • 1
  • 2
  • 3
  1. 查看软件列表

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
...
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  1. 卸载应用

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

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


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

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

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

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

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

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

卸载华为视频

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

卸载其他软件

  • 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: 花瓣剪辑

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/128064
推荐阅读
相关标签
  

闽ICP备14008679号