我厌倦了我的亚马逊火灾7平板电脑(第9 Gen)的Bloatware
我厌倦了我的亚马逊火灾7平板电脑(第9 Gen)的Bloatware
I'm tired of bloatware on my amazon fire 7 tablet (9th gen)
为了卸载应用程序,您需要其包名称。在 adb shell
中,执行:
pm list packages
注意要卸载的所有包名称。 (请小心。首先做一个备份。许多话如果不是所有消息来源都说它很容易重新安装应用程序,因为你没有真正全删除它们,只能为当前用户卸载它们但是卸载它们我确实在过去的某些设备上重新安装了问题!还可以删除关键系统应用程序可能导致Bootloops。)
pm uninstall -k --user 0 PACKAGE
用包的名称替换 PACKAGE
(例如 com.confetti.app
)。
-k
是 keep the data and cache directories around after package removal
,这可能是没有root的必备的。它过去没有它在一个LG设备上工作。
--user 0
卸载应用程序只是为了当前用户,所以基本上应用仍然存在,但是因为卸载主用户来,它不会以任何方式打扰你。没有root或RW访问系统分区,这是您最好的选择。
完成。
替代方法(需要使用RW访问的恢复到 /system
分区):
在某些设备上,您可以使用自定义恢复来执行此操作,稍微更有效地进行。您不需要手机内的root(例如,没有超级用户应用程序。然后,您可以在 pm list packages 1
中使用此恢复:
pm list packages 2
这将列出您的系统应用程序。注意您要删除的内容。例如,如果要删除 pm list packages 3
,请运行此命令:
pm list packages 4
为要删除的每个应用程序执行此命令,然后重新启动设备。
In order to uninstall the apps, you need their package names. Within an adb shell
, execute:
pm list packages
Take note of all the package names that you want to uninstall. (PLEASE be careful. DO a backup first. Many if not all sources say it's oh so easy to re-install apps because you don't really fully delete them and only uninstall them for the current user but I did have issues with re-installing it on some devices in the past! Also removing crucial system applications can cause bootloops.)
pm uninstall -k --user 0 PACKAGE
Replace PACKAGE
with the name of the package (e.g. com.confetti.app
).
-k
is to keep the data and cache directories around after package removal
, this might be neccessary without root. It worked without it on an LG device for me in the past though.
--user 0
uninstalls the app just for the current user, so basically the app is still there, but since uninstalled for the main user, it won't bother you in any kind of way. Without root or RW access to the system partition, this is your best bet.
Done.
Alternative method (requires a recovery with RW access to the /system
partition):
On some devices you can use a custom recovery to do this, slightly more efficiently, aswell. You won't need root within the phone (e.g. no superuser app.) but you will need a custom recovery and the ability to mount the /system
partition as RW
. Then you can use this, within an adb shell
in recovery:
mount /system ls /system/app
This will list your system apps. Take note of what you want to delete. For example if you want to delete confetti.apk
, run this command:
rm /system/app/confetti.apk
Do this command for every app you want to remove, then restart your device.
© 2022 it.wenda123.org All Rights Reserved. 问答之家 版权所有