Skip to content

Instantly share code, notes, and snippets.

@k26dr
Last active August 14, 2016 23:50
Show Gist options
  • Save k26dr/c436446857e1d7bcb0534de000b535b7 to your computer and use it in GitHub Desktop.
Save k26dr/c436446857e1d7bcb0534de000b535b7 to your computer and use it in GitHub Desktop.
Install basic programs I want in all my Chromebook chroots
#!/bin/bash
# Install a bunch of programs that I want on every chroot
sudo apt-get update
sudo apt-get install git -y
git config --global user.email "kedarmail@gmail.com"
git config --global user.name "Kedar Iyer"
git config --global push.default simple
sudo apt-get install vim -y
sudo apt-get install python3-pip -y
sudo apt-get install man-db -y
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment