Last Update: 2023-07-18

#Introduction

In 2016, Google expanded the Android ecosystem by integrating the Android operating environment into Chrome OS. This move opened the door for desktop Android apps designed for large screens and keyboard and mouse operations. Over the years, Google has made significant enhancements to the Android environment on Chrome OS, encouraging more manufacturers and developers to get involved. In May, Google's open-source project, , brought a native Linux experience to Chrome OS, enabling daily development and debugging work on Chrome OS.

During the annual Google Developers Conference (Google IO), we witnessed the installation of Chrome on a Google Pixelbook during a presentation on "". This Pixelbook supports large Linux apps like Android Studio and allows direct debugging and compiling of Android apps via ADB and the onboard Android environment, marking a significant milestone in the promotion of the Android desktop ecosystem.

is a desktop operating system based on Chromium OS. It decouples the originally tightly bound Google services and adds self-developed modules and optimizations, making it more accessible to users in mainland China.

This guide will walk you through enabling the Linux subsystem in FydeOS, installing and running Linux apps, and working with the onboard Android environment to achieve high efficiency on Chrome OS + Pixelbook, as demonstrated at Google IO.

#System Requirements

#Minimum Configuration

Due to the high system performance requirements of large IDEs like Android Studio, we recommend installing FydeOS on devices with superior hardware than entry-level devices.

#Incompatibility

  • The Android environment of FydeOS (public beta version) is currently only compatible with Intel series graphics cards.
  • The architecture design of Project Crostini requires the CPU to support hardware virtualization (VT-x). Most mid- to high-end Intel CPUs, excluding the BayTrail family, carry this feature.

#Getting Started

  1. Download, flash, and load FydeOS onto your hard drive. Detailed instructions are available on the FydeOS official website and knowledge base.

    • FydeOS official download link:
    • Instructions for flashing FydeOS to a portable storage device and booting up:
    • If possible, install FydeOS as the sole system on your PC to monopolize the entire hard disk. Alternatively, follow this tutorial to coexist FydeOS with other systems:
  2. Enable Android ADB debugging settings:

    • Launch "Android" from the application launcher.
    • Navigate to "System" -> "Developer options" and enable the "ADB debugging" option.

Note: FydeOS does not include Google's service framework and Play Store. To install Android apps, download a third-party Android Market or install them directly from the .apk file. Installed Android apps will automatically appear in the "application launcher".

  1. Enable the Linux subsystem:

    • Go to "Settings" and locate the "Linux" settings.
    • Click "Turn On" and follow the prompts.
    • After the installation, FydeOS will add a new app called "Terminal" in the application launcher. This is a fully functional Debian with a complete and independent file system where you can perform daily Linux operations.
  2. Download and run Android Studio, and install additional tools:

    • Download Android Studio for ChromeOS from the official website:
    • After downloading, double-click to install Android Studio.
    • Initialize Android Studio according to the on-screen prompts and download the required SDK and accessory toolset.
  3. Connect to the ADB target in the Linux environment:

    • Allow the Android subsystem of FydeOS to establish an ADB connection with Android Studio.
    • When Android Studio is running, right-click the "Terminal" icon in the taskbar and select "Open New Window". Run the following command in a new Terminal session:
sudo apt-get install adb
adb connect 100.115.92.2:5555
  1. Deploy from FydeOS:

    • After connecting to the ADB target in the Linux environment, you can load an Android app directly onto your FydeOS device using Android Studio or load an APK using the Terminal.
  2. Connect to ADB over a network:

    • Ensure ADB debugging is enabled.
    • Get the IP address of your FydeOS Device and connect to your FydeOS from your development machine using its IP address.
  3. FAQs and Help:

    • For more tips on using FydeOS and the Linux subsystem, refer to the .
    • For specific technical questions, post them to the for help.

#References