Featured

Running Windows 11 on Linux with KVM/QEMU

This guide walks through the full process of running Windows 11 on Linux using KVM/QEMU and Virt-Manager,  the most robust and future-proof setup available today. While tools like VirtualBox still exist, KVM/QEMU has quietly become the gold standard on Linux. It offers: Near-native CPU performance Excellent disk and network throughput Proper UEFI, Secure Boot, and TPM support Long-term compatibility with Windows 11 updates Before starting, make sure you have: A Linux system with virtualization enabled in BIOS Intel: VT-x / VT-d AMD: SVM / IOMMU At least 8 GB RAM (16 GB recommended) Around 80 GB of free disk space A Windows 11 ISO The VirtIO drivers ISO Step 1: Check Virtualization Support Open a terminal and run: egrep -c '(vmx|svm)' /proc/cpuinfo If the result is 1 or higher , virtualization is enabled. If it returns 0 , you’ll need to enable it in your BIOS before continuing. Step 2: Install KVM, QEMU, and Virt-Manager On Ubuntu / Debian-based systems: sudo apt update sudo...

Root the Pixel 8 Pro

First, install the Android SDK Platform Tools on your PC.

Enable USB Debugging and OEM Unlocking by going to about phone, then tap on 'build number' several times until you see a popup saying 'you are now a developer'


In developer options enable USB debugging and toggle the OEM unlock swith on

This is required for your device to be recognized by the PC in ADB mode and for unlocking the bootloader.

Unlocking the Bootloader: 

Get the Google USB driver 

Note: I find it easiest to reboot into fastboot, then install the USB driver.

Open a command prompt in the platform tools folder

Type - adb devices

allow ADB debugging in the popup window 

adb reboot bootloader

fastboot flashing unlock

You'll see a screen with the option to unlock or lock the bootloader.

Press the volume button. From here you will be able to use the volume up and down buttons to move up to 'unlock'

Press the power button to confirm


This is a crucial step but be aware that it wipes all data from your device and could void its warranty.


Download the factory image for your device, extract it, and locate the `init_boot.img` file. 

Download the Magisk app, use it to patch the `init_boot.img` file.


Transfer it to your phone. 


It's easiest to go into developer options and enable the default usb configuration as it is in the screenshot. 

You'll also need to enable USB debugging again as the device was wiped


You can find the init_boot.img inside a zipped file located inside the factory image zip

Transfer the patched file to your PC. 

Copy as path the magisk patched image, then in the platform tools folder, using cmd type;

adb reboot bootloader

fastboot flash init_boot [path to magisk image]

fastboot reboot


Rooting can void your warranty and prevent certain apps like banking apps from working. It's recommended to proceed with caution and follow each step carefully

Comments