Featured

Tailscale: A Simpler, Smarter Way to Connect All Your Devices

Tailscale creates a private, encrypted network between your devices using WireGuard under the hood. Instead of “a VPN but complicated,” it acts more like: a mesh of private tunnels with identity-based access (your Google / Microsoft login = your authentication) and automatic NAT traversal (no port-forwarding nightmares) plus support for basically every platform on Earth Everything becomes part of your personal tailnet,  your own secure space. 1. Create your tailnet Go to https://tailscale.com/ Click Sign Up Choose the identity provider you want (Google, Microsoft, GitHub, Apple ID, etc.) That’s it. Your tailnet exists. 2. Install Tailscale on your first device On Windows Download the installer from: https://tailscale.com/download Run the .msi Sign in Approve the device curl -fsSL https://tailscale.com/install.sh | sh sudo tailscale up Then sign in via the browser page that opens. 3. Add your second device Once signed in, both devices will now appear ...

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