Skip to content

Instantly share code, notes, and snippets.

@maks
Last active October 5, 2018 09:05
Show Gist options
  • Select an option

  • Save maks/05eebc61bfd534c9d896a049f39cd612 to your computer and use it in GitHub Desktop.

Select an option

Save maks/05eebc61bfd534c9d896a049f39cd612 to your computer and use it in GitHub Desktop.
Dev setup on Crostini

Apps and Tools

App downloads zip's & deb's

  • Visual Studio Code
  • Android SDK - sdk-tools-linux-4333796.zip (not needed it installing Android Studio)
  • Android Studio
  • Flutter SDK

If installing only android sdk without studio:

sdkmanager --update
sdkmanager --list
sdkmanager "platform-tools" "platforms;android-28"

Apt

sudo apt-get install lib32stdc++6
sudo apt install openjdk-8-jdk

Tilix - terminal

ref

echo 'deb http://ftp.debian.org/debian stretch-backports main' | sudo tee /etc/apt/sources.list.d/stretch-backports.list
sudo apt update
sudo apt -y install tilix
sudo ln -s /etc/profile.d/vte-2.91.sh /etc/profile.d/vte.sh

You'll then want to add this to your ~/.bashrc (or ~/.zshrc if using zsh)

if [ $TILIX_ID ] || [ $VTE_VERSION ]; then
    source /etc/profile.d/vte.sh
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment