最简单的pixel刷机和安装面具、lsposed

news/2024/7/7 19:31:41

一 下载手机对应的系统

	1,手机usb连接然后重启进入Fastboot模式:adb reboot bootloader
	2,找到你下载的系统,Windows 系统 直接运行  flash-all.bat

左边就是安卓11和12的系统,右边是对应的手机型号
上图 :左边就是安卓11和12的系统,右边是对应的手机型号
下图: 就是你下载的系统映像解压之后的样子
在这里插入图片描述

二 刷面具magisk

	1,百度去下载一个magisk.apk
	2,根据上图为例,取出映像解压之后的image-walleye-ppr1.180610.009.zip压缩包里面的boot.img
	3,打开magisk 点击安装,patch完会有一个新的boot.img带有magisk标识
	4,带有magisk标识的boot.img 把它pull出来 然后 
		adb reboot bootloader
		fastboot flash boot 刚才pull出来的img

在这里插入图片描述

三 安装 lsposed

1,百度去下载一个lsposed.apk(或者是下载一个搞机助手,那里面直接点点就能安装完)
2,根据提示下载两个zip:用面具安装Riru.zip然后再安装Riru-LSPosed.zip,重新启动就能激活

在这里插入图片描述
在这里插入图片描述


http://lihuaxi.xjx100.cn/news/1883025.html

相关文章

统信UOS_麒麟KYLINOS上使用命令行配置NTP服务器

原文链接:统信UOS/麒麟KYLINOS上使用命令行配置NTP hello,大家好啊,今天我要给大家介绍的是在统信UOS/麒麟KYLINOS操作系统上使用命令行配置NTP(Network Time Protocol)服务器的方法。在内网环境下,许多企业…

A* 算法简介

一、A* 算法简介A* algorithm is a popular choice for graph search. Breadth First Search is the simplest of the graph search algorithms. Graph search algorithms, including A*, take a “graph” as input. A* algorithm is a modification of Dijkstra’s Algorithm…

error:gmapping

– Could not find the required component ‘gmapping’. The following CMake error indicates that you either need to install the package with the same name or change your environment so that it can be found. CMake Error at /opt/ros/kinetic/share/catkin/cmake…

通过虚拟机安装Open5GS 和UERANSIM记录

目录 wsl虚拟环境尝试失败 step1 安装wsl: step2下载Ubuntu 20.04.6 LTS: step3升级wsl: step4生成用户: step5 linux下安装软件需要的镜像: step6 安装图形界面xfce和浏览器: step6 安装chrome virtual box安装ubuntu step7&#xf…

HarmonyOS鸿蒙操作系统架构开发

什么是HarmonyOS鸿蒙操作系统? HarmonyOS是华为公司开发的一种全场景分布式操作系统。它可以在各种智能设备(如手机、电视、汽车、智能穿戴设备等)上运行,具有高效、安全、低延迟等优势。 目录 HarmonyOS 一、HarmonyOS 与其他操…

AI 绘画 | Stable Diffusion 黑白老照片上色修复

前言 Stable Diffusion WEB UI 依靠各种第三方插件,可是实现很多功能,今天主要讲解如何使用ControNet插件的Recolor (重上色) 实现黑白老照片的上色和修复,变成一个彩色高清的图片。 ControNet 官方地址: https://github.com/lllyasviel/ControlNet 教程 安装ControNet…

[ndss 2023]确保联邦敏感主题分类免受中毒攻击

Securing Federated Sensitive Topic Classification against Poisoning Attacks 摘要 我们提出了一种基于联邦学习 (FL) 的解决方案,用于构建能够检测包含敏感内容的 URL 的分布式分类器,即与健康、政治信仰、性取向等类别相关的内容。尽管这样的分类器…

20、关联容器、无序容器

20、关联容器、无序容器 关联容器mapmultimapsetmultiset 无序容器哈希unordered_map 关联容器 map // map的使用 #include <iostream> #include <map> #include <stdexcept> using namespace std;class Student{ public:Student(const string& name&qu…