diff --git a/tutorials/Install-Rooted-OTA.md b/tutorials/Install-Rooted-OTA.md index b3cacbd..f4787d0 100644 --- a/tutorials/Install-Rooted-OTA.md +++ b/tutorials/Install-Rooted-OTA.md @@ -1,6 +1,6 @@ # OTA Update on a Rooted Device -The installation of OTA updates often fails if the device has been rooted. Though it's still possible – without data loss. This guide shows how, using *TWRP* and *Magisk*. +The installation of ***OTA*** updates often fails if the device has been **rooted**. Though it's still **possible** – without loosing any data. This guide shows how, using ***TWRP*** and ***Magisk***. ***WARNING:** Before you start **backup** everything that's important! Proceed at own risk!* @@ -11,11 +11,11 @@ The installation of OTA updates often fails if the device has been rooted. Thoug 1. The Update file of the version that's *already running* on the device (*NOT* the update you want to install) 1. [**TWRP**](https://twrp.me/) for your device 1. [**Magisk**](https://forum.xda-developers.com/apps/magisk/official-magisk-v7-universal-systemless-t3473445) -1. *ADB* and *Fastboot* inclusive developer mode the device +1. ***ADB*** and ***Fastboot*** inclusive *Developer Mode* enabled on the device Don't forget to check the checksums of all files. -Doing the update isn't that difficult: Reset some system partitions, install OTA, refresh *TWPR* and *Magisk*, done. There are two versions of this guide: The short version is just a list of steps, while the long version contains each step and the commands necessary. +Doing the update isn't that difficult: Reset some system partitions, install ***OTA***, refresh ***TWPR*** and ***Magisk***, done. There are two versions of this guide: The short version is just a list of steps, while the long version contains each step and the commands necessary. ## Short Version @@ -25,9 +25,9 @@ Doing the update isn't that difficult: Reset some system partitions, install OTA 1. Boot to Bootloader 1. Flash *recovery*, *system* and *boot* images 1. Reboot -1. Flash *TWRP* +1. Flash ***TWRP*** 1. Boot to Recovery -1. Install *Magisk* +1. Install ***Magisk*** 1. Reboot @@ -40,9 +40,9 @@ At first double check your backups and the prerequisites listed above. ### Preparation -##### Copy Magisk to your device +##### Copy *Magisk* to your device -Copy (or download) Magisk Zip to your device. It doesn't matter if it's on the internal or SD memory, just place it somewhere you can find it again later. You can do this step at any later time too. +Copy (or download) ***Magisk*** Zip to your device. It doesn't matter if it's on the internal or SD memory, just place it somewhere you can find it again later. You can do this step at any later time too. ##### Stock files of current running version @@ -58,7 +58,7 @@ Plug the device to your computer through USB and enable *USB Debugging* on the d ### Flash System Images -Open a terminal and use these commands to flash the necessary partitions (don't type the `$`). +Open a terminal and use these commands to flash the necessary partitions (don't type the `>`): ```sh # Check if device is recognized @@ -83,14 +83,14 @@ Open a terminal and use these commands to flash the necessary partitions (don't > fastboot reboot ``` -### Install OTA +### Install *OTA* -Install the *OTA* as usual on the device. The update will reboot automatically. Once this is done check that the installed version is correct and your system is up to date. +Install the ***OTA*** as usual on the device. The update will reboot automatically. Once this is done check that the installed version is correct and your system is up to date. -### Install TWRP +### Install *TWRP* -Flash *TWRP* using *ADB*. The image typically has a different name, for simplification `TWRP.img` is used here. +Flash ***TWRP*** using ***ADB***. The image typically has a different name, for simplification `TWRP.img` is used here. ```sh # Check if device is recognized @@ -109,16 +109,16 @@ Flash *TWRP* using *ADB*. The image typically has a different name, for simplifi > fastboot reboot ``` -##### Boot into TWRP +##### Boot into *TWRP* -When the last command restarts the device, use the *Volume Keys* to navigate. Select boot into *"Recovery"*. *TWRP* will show up then. +When the last command restarts the device, use the *Volume Keys* to navigate. Select boot into *"Recovery"*. ***TWRP*** will show up then. -### Install Magisk +### Install *Magisk* -From the *TWRP* menu select *"Install"* and install the *Magisk* Zip. Reboot afterwards. +From the ***TWRP*** menu select *"Install"* and install the ***Magisk*** Zip. Reboot afterwards. -Note: *It's a good chance to clear the *Dalvik-Cache* here, but that's fully optional.* +**Note:** *It's a good chance to clear the *Dalvik-Cache* at this point – but that's fully optional.* ### Done