Contents

Install /e/ OS on a Pixel XL

TL;DR

Basically copying the steps from the /e/ OS Wiki, which copied its steps from the LineageOS Wiki.

The Rest of the Story

Prerequisites

First, you will need to have adb and fastboot installed on your system.

If you are using Linux Mint (or another Debian/Ubuntu-based distro), just open a terminal, and enter the following command:

1
sudo apt install adb fastboot

If you are on Windows, you can follow these instructions:

If you are on a Mac, you can following these instructions:

Next, you will need to enable Developer Options, and USB Debugging on your device. Here are the steps on an Android 9, Pixel XL that you will need to take:

  1. Open “Settings”, and select “About Phone”.
    /posts/install-e-os-on-a-pixel-xl/USB-Debugging-01.png
    /posts/install-e-os-on-a-pixel-xl/USB-Debugging-02.png
    About Phone
  2. Tap on “Build number” seven times.
    /posts/install-e-os-on-a-pixel-xl/USB-Debugging-03.png
    Build Number
    /posts/install-e-os-on-a-pixel-xl/USB-Debugging-04.png
    Developer Mode Enabled
  3. Go back to “Settings”, select “System”, then “Advanced”, and select “Developer options”.
    /posts/install-e-os-on-a-pixel-xl/USB-Debugging-05.png
    System
    /posts/install-e-os-on-a-pixel-xl/USB-Debugging-06.png
    Advanced
    /posts/install-e-os-on-a-pixel-xl/USB-Debugging-07.png
    Developer Options
  4. Scroll down, and check the “USB debugging” entry under “Debugging”.
    /posts/install-e-os-on-a-pixel-xl/USB-Debugging-08.png
    USB debugging
    /posts/install-e-os-on-a-pixel-xl/USB-Debugging-09.png
    Allow USB debugging
    /posts/install-e-os-on-a-pixel-xl/USB-Debugging-10.png
    Successfully Enabled USB Debugging
  5. Plug your device into your computer.
  6. On the computer, open up a terminal/command prompt, and type adb devices.
1
2
3
4
adb devices
List of devices attached
* daemon not running; starting now at tcp:5037
* daemon started successfully
  1. A dialog should show on your device, asking you to allow usb debugging. Check “Always allow from this computer”, and choose “OK”.
    /posts/install-e-os-on-a-pixel-xl/USB-Debugging-11.png
    Alway allow USB debugging

Unlocking the Bootloader

Warning: After you complete the steps to unlock the bootloader, the phone will perform a Factory Reset! You will lose ALL the data on you phone, so be prepared!

Step 1 Caveats

There are several things to note about step 1 (one) below.

Firstly, I am preforming these steps on a straight out-of-the-box Pixel XL. That means the initial settings on the phone are the absolute defaults. For example, I have not updated to Android 10, even though I keep getting the notification.

Secondly, I had to be connected to Wi-Fi for the “OEM unlocking” option to be available, otherwise it was grayed out (i.e. disabled).

And thirdly, I need to mention, if you are having trouble with the “OEM unlocking” option not being available, then follow these instructions: [How-to] Unlock bootloader on Verizon Pixel/XL.

The Actual Steps

  1. Enable “OEM unlocking” by going to “Settings”, “System”, “Advanced”, and then “Developer options”.
    /posts/install-e-os-on-a-pixel-xl/USB-Debugging-05.png
    System
    /posts/install-e-os-on-a-pixel-xl/USB-Debugging-06.png
    Advanced
    /posts/install-e-os-on-a-pixel-xl/USB-Debugging-07.png
    Developer Options
    /posts/install-e-os-on-a-pixel-xl/OEM-unlocking-02.png
    OEM unlocking
  2. Tap “Enable” when presented with this pop-up
    /posts/install-e-os-on-a-pixel-xl/OEM-unlocking-01.png
    Confirm to Enable OEM unlocking
  3. Connect your Pixel XL to your computer via USB.
  4. On the computer, open a Terminal window, and type:
1
adb reboot bootloader
  1. Once the device is in fastboot mode, verify your computer finds it by typing:
1
fastboot devices
- If you see `no permissions fastboot`, try running `fastboot` with the `sudo` command.
  1. Now type the following command to unlock the bootloader:
1
fastboot flashing unlock
  1. Use the volume up button on the side of the phone to highlight “Yes Unlock bootloader (way void warranty)”, then press the power button on the side of the phone to confirm.
    /posts/install-e-os-on-a-pixel-xl/OEM-unlocking-03.jpg
  2. You will then be brought back to the bootloader screen, and you will see at the bottom: “Device is UNLOCKED”.
  3. Again, using the volume up/down buttons on the side of the phone, adjust to action selector to read “Power off”, and then press the power button on the side of the phone.
    /posts/install-e-os-on-a-pixel-xl/OEM-unlocking-04.png
    Power off / Reboot device
  4. Wait for the phone to power off completely, and then turn the phone on again. This boot will take a while as the phone will be performing a factory reset.
  5. Since the device resets completely, you will need to re-enable USB debugging to continue

Download /e/ OS for the Pixel XL

Download the latest build of /e/ OS for your Pixel by going here.

To download the latest file, click on the link with the highest date. The files are formatted this way: e-0.7-p-YYYYMMDDXXXXX-dev-marlin.zip

  • YYYY = Year
  • MM = Month
  • DD = Day
  • XXXXX = random build number (I think)

As of this writing, the latest file is: e-0.7-p-2019110830006-dev-marlin.zip

Once you have downloaded the zip file, it's best to ensure the validity of the file. To do that, click on the “SHA256” link next to the file you downloaded:

/posts/install-e-os-on-a-pixel-xl/Download-e-os-01.png
Click on SHA256 link

You will be presented with a screen that looks like this:

/posts/install-e-os-on-a-pixel-xl/Download-e-os-02.png
/e/ OS SHA256 sum

Now open up a Terminal window, and navigate to the directory where you downloaded the zip file, and type the following command:

Note: Be sure to change the file name to the name of the file you downloaded. As stated before, the exact file name used in this post is only valid for the time of this post.

1
sha256sum e-0.7-p-2019110830006-dev-marlin.zip

Now compare the two outputs to be sure they match:

1
3ecd656b032f8ee66eb8a936e0086a817bac6d1793d802956d6d7efdfd540319  e-0.7-p-2019110830006-dev-marlin.zip

/posts/install-e-os-on-a-pixel-xl/Download-e-os-02.png
Should Match above Terminal Output

Download TWRP Recovery

The version of LineageOS on which /e/ OS is based, has a built-in recovery. However, in order to install /e/ OS to begin with you will have to flash a temporary recovery called TWRP

Download the latest version of TWRP for the Pixel XL by going here.

The version used in this tutorial is: twrp-3.3.1-3-marlin.img.

Putting It All Together

By now you should have two files:

Note: Exact file versions may be different. Please remember to download the latest version of each file.

  1. twrp-3.3.1-3-marlin.img
  2. e-0.7-p-2019110429547-dev-marlin.zip

Here are the steps you will need to take in order install everything you downloaded onto your Pixel XL:

  1. Power on your Pixel XL.
  2. Once the phone has booted into the homescreen, connect your Pixel XL to your computer via USB.
  3. On the computer, open up a Terminal window, and type the following:
1
adb reboot bootloader
  1. Your Pixel XL should automatically reboot into the bootloader menu.
    /posts/install-e-os-on-a-pixel-xl/install-e-01.png
    Bootloader Menu
  2. Verify that your computer can still detect the Pixel XL whilst at the bootloader menu.
    • In the Terminal window, type the following:
      1
      
      fastboot devices
      
    • Your output should look something like this:
      1
      
      HTXXXXXXXX60    fastboot
      
      Note: If you see “no permissions fastboot”, try running fastboot as root using the sudo command.
  3. Now you can temporarily flash the TWRP recovery onto your Pixel XL by doing the following:
    • In the Terminal, navigate to the directory where you downloaded the twrp-3.3.1-3-marlin.img file.
    • Type the following to push the file to your Pixel XL:
      1
      
      fastboot flash boot twrp-3.3.1-3-marlin.img
      
      Note: The file may not be named identically to what is shown in the command above, so adjust accordingly.
    • Results from executing the fastboot command should look similar to this:
      1
      2
      3
      4
      5
      
      downloading 'boot.img'...
      OKAY [  0.872s]
      booting...
      OKAY [  1.051s]
      finished. total time: 1.923s
      
  4. Your Pixel XL will return to the bootloader menu:
    /posts/install-e-os-on-a-pixel-xl/install-e-01.png
    Bootloader Menu
  5. Use the volume down button on the side of the phone to change the selection to “Recovery mode”, then push the power button on the side of the phone to select that option
  6. Your Pixel XL will reboot, and then enter the TWRP recovery:
    /posts/install-e-os-on-a-pixel-xl/install-e-03.png
    /posts/install-e-os-on-a-pixel-xl/install-e-04.png
  7. At the TWRP main menu, tap “Wipe”
    /posts/install-e-os-on-a-pixel-xl/install-e-05.png
  8. Now tap “Format Data”, and continue with the formatting process by typing “yes” then tapping the check mark on the keyboard. This will remove encryption as well as delete all files stored on the internal storage.
    /posts/install-e-os-on-a-pixel-xl/install-e-06.png
    /posts/install-e-os-on-a-pixel-xl/install-e-07.png
  9. Return to the previous menu by tapping the “Back” button, and then the back triangle
    /posts/install-e-os-on-a-pixel-xl/install-e-08.png
    /posts/install-e-os-on-a-pixel-xl/install-e-09.png
  10. Now tap “Advanced Wipe”
    /posts/install-e-os-on-a-pixel-xl/install-e-10.png
  11. Select all of the options, and then “Swipe to Wipe”
    /posts/install-e-os-on-a-pixel-xl/install-e-11.png
    Note: If you see Error opening: '/data/media' (No such file or directory), you can continue, don’t worry.
  12. Now tap “Back”, then tap the back triangle twice to get back to the main menu.
  13. Tap “Reboot”, then tap “Recovery”, and “Swipe to Reboot”.
    /posts/install-e-os-on-a-pixel-xl/install-e-15.png
    /posts/install-e-os-on-a-pixel-xl/install-e-16.png
    /posts/install-e-os-on-a-pixel-xl/install-e-17.png
  14. The Pixel XL will reboot, and return to the TWRP main menu
  15. Tap “Advanced” on the TWRP main menu, then “ADB Sideload”
    /posts/install-e-os-on-a-pixel-xl/install-e-18.png
    /posts/install-e-os-on-a-pixel-xl/install-e-19.png
  16. Select “Wipe Dalvik Cache”, “Wipe Cache”, and then “Swipe to Start Sideload”.
    /posts/install-e-os-on-a-pixel-xl/install-e-20.png
  17. On your computer you now start the sideload of /e/ OS:
    • In the Terminal, navigate to the directory where you downloaded the e-0.7-p-2019110830006-dev-marlin.zip file.
    • Type the following to push the file to your Pixel XL:
      1
      
      adb sideload e-0.7-p-2019110830006-dev-marlin.zip
      
      Note: The file may not be named identically to what stands in this command, so adjust accordingly.
    • You will see progress in the Terminal, and on your Pixel XL:
      1
      
      serving: 'e-0.7-p-2019110830006-dev-marlin.zip'  (`~`XX%)
      
  18. Now tap “Reboot System”, then “Swipe to Reboot”, and your Pixel XL will boot into your newly installed /e/ OS. Follow the on-screen instructions to set up you Pixel XL, and you're ready to start experimenting.
    /posts/install-e-os-on-a-pixel-xl/install-e-21.png

Conclusion

There you have it, you now have the privacy-respecting /e/ OS on your Pixel XL. Proceed to the bonus content if you want to root your Pixel XL. If you do not want to root your device, then you are done!

Help you found this helpful!

End of Line.