Featured

UniGetUI: A Unified Package Management Experience for Windows

For anyone who’s ever juggled between different package managers on Windows — from Winget to Chocolatey , Scoop , Pip , or NPM — the challenge of managing them all seamlessly is real. That’s where UniGetUI steps in. Developed by Martí Climent , UniGetUI (formerly known as WingetUI) provides a sleek, open-source graphical interface for all major Windows package managers, combining their power into one easy-to-use hub. github +5 ​ What Is UniGetUI? UniGetUI is a free, open-source GUI designed to simplify software installation and management on Windows 10 and Windows 11 . Think of it as a “package manager manager” — a single visual front-end that lets users access multiple backend systems like Winget, Scoop, Chocolatey, Pip, NPM, the .NET Tool , and PowerShell Gallery from one interface. virtualizationreview +2 ​ This tool is ideal for users who want Linux-style convenience on Windows but prefer clicks over commands . Whether you’re installing, updating, or cleaning up applicati...

How to Install Lineage OS 21 on the Pixel 8 Pro and Root It





Installing a custom ROM like Lineage OS can breathe new life into your device, offering a clean and customizable Android experience. In this guide, I’ll walk you through the process of installing Lineage OS 21 on your Pixel 8 Pro and rooting it.

LineageOS builds for this device require an Android 14 version of the stock OS to be installed prior to following the installation guide

Downloads

   - Lineage OS 21 files for Pixel 8 Pro
   - GApps (Google Apps) package (optional)
   - Magisk for rooting

Ensure ADB and Fastboot are installed on your computer.

Unlock the Bootloader

1. Enable Developer Options: Go to Settings > About phone and tap the Build number 7 times.

2. In Developer options, enable USB debugging

3. In Developer options, toggle on OEM unlocking

4. Connect your phone to your computer via USB.

5. Open a command prompt or terminal on your computer and type:
   
   adb reboot bootloader
   
Once in bootloader mode, type:
   
   fastboot flashing unlock

The phone will be restored to factory defaults. It is crucial to enable USB debugging again.

Download the following files from here.
    • boot.img
    • dtbo.img
    • vendor_kernel_boot.img 
Or use adb reboot bootloader in adb shell


Flash the downloaded image files to your device 


fastboot flash boot "boot.img"

fastboot flash dtbo "dtbo.img"

fastboot flash vendor_kernel_boot "vendor_kernel_boot.img"




Now reboot into recovery to verify the installation.

fastboot reboot recovery 

Download the LineageOS zip file that you would like to install or build the package yourself.
  • Use the menu to navigate to and to select the Recovery option

Now tap Factory Reset, then Format data / factory reset and continue with the formatting process. This will remove encryption and delete all files stored in the internal storage, as well as format your cache partition (if you have one).

Step 3: Install Lineage OS 21

Sideload the LineageOS .zip package but do not reboot before you read/followed the rest of the instructions!
  • On the device, select “Apply Update”, then “Apply from ADB” to begin sideload.
  • Using platform tools, sideload the package using: adb sideload "filename.zip."

WARNING: If you want to install Google Apps add-on package (use the arm64 architecture), you can download it from here. This add-on needs to be installed before booting into LineageOS for the first time!

After the package is installed, recovery will inform you that reboot to recovery is required to install add-ons. In case you want to do that, please select “Yes,” otherwise “No”.

It is necessary to rename "magisk.apk" to "magisk.zip" prior to flashing.

Comments