Skip to content

Instantly share code, notes, and snippets.

@thirteen37
Last active December 28, 2015 17:49
Show Gist options
  • Save thirteen37/7538193 to your computer and use it in GitHub Desktop.
Save thirteen37/7538193 to your computer and use it in GitHub Desktop.
ADB on Chrome OS (x64) with Saucy (13.10)

The main trick here is the new Multiarch on Ubuntu Saucy and the need to enable it separately for Crouton.

  1. Install Crouton

  2. Install saucy

    sudo sh -e ~/Downloads/crouton -t xfce -r saucy
    
  3. Start the chroot

    sudo startxfce4
    
  4. Download and extract Android SDK starter

  5. Install Java 7

    sudo apt-get install openjdk-7-jre
    
  6. Download platform tools

    cd ~/android-sdk-linux/tools
    ./android
    
  7. Enable i386

    sudo dpkg --add-architecture i386
    sudo apt-get update
    
  8. Install ADB i386 dependencies

    sudo apt-get install libc6:i386 libstdc++6:i386
    
  9. Run ADB

    cd ~/android-sdk-linux/platform-tools
    ./adb
    
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment