Install Magisk With ADB Root Smart Phone Using Magisk with PC
Install Magisk With ADB Root Smart Phone Using Magisk with PC
To install Magisk using ADB (Android Debug Bridge), follow these steps:
Enable USB Debugging: On your Android device, go to Settings > About Phone and tap on the "Build number" several times until you see a message saying "You are now a developer." Then, go to Settings > Developer options and enable USB Debugging.
- Connect your device to your computer: Use a USB cable to connect your Android device to your computer.
- Download Magisk: Visit the official Magisk GitHub repository and download the latest Magisk ZIP file onto your computer.
- Open a Command Prompt or Terminal: On your computer, open a Command Prompt (Windows) or Terminal (Mac or Linux).
- Navigate to the ADB directory: In the Command Prompt or Terminal, navigate to the directory where the ADB files are located. If you have ADB installed globally, you can skip this step.
Reboot into fastboot mode: Enter the following command to reboot your device into Fastboot mode:
Copy code
adb reboot bootloader
Flash Magisk using ADB: Once your device is in fastboot mode, execute the following command to flash Magisk:
bash Copy code
fastboot flash boot /path/to/magisk.zip
Replace /path/to/magisk.zip with the actual path to the Magisk ZIP file you downloaded in Step 3.
Reboot your device: After flashing Magisk, reboot your device by entering the following command:
Copy code
fastboot reboot
Verify root access: Once your device has booted up, you can install the Magisk Manager APK to manage your root access. You can download it from the official Magisk GitHub repository or other trusted sources. Open the Magisk Manager app, and it should indicate that your device is rooted.
Please note that these steps are a general guide and may vary depending on your device and operating system version. Make sure to follow instructions specific to your device and use trusted sources for downloading Magisk and related files.
Join the conversation