Last active
June 24, 2017 02:03
-
-
Save bdunnette/75fdc4b15b9599cd5fdf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# To get an Ubuntu 16.04 XFCE desktop: sudo sh -e ~/Downloads/crouton -t xfce,cli-extra,xiwi,extension -r xenial | |
# For CLI-only: sudo sh -e ~/Downloads/crouton -t cli-extra -r xenial | |
# To run the latest version: | |
# curl https://gist.githubusercontent.com/bdunnette/75fdc4b15b9599cd5fdf/raw/setup-chroot.sh | sh | |
sudo apt-get install -y nano curl git language-pack-en build-essential software-properties-common | |
sudo echo "deb http://cran.rstudio.com/bin/linux/ubuntu xenial/" | sudo tee -a /etc/apt/sources.list | |
gpg --keyserver keyserver.ubuntu.com --recv-key E084DAB9 | |
gpg -a --export E084DAB9 | sudo apt-key add - | |
sudo apt-get update | |
sudo apt-get install -y virtualenv virtualenvwrapper python-pip | |
sudo apt-get install -y r-base r-base-dev | |
#sudo add-apt-repository ppa:couchdb/stable -y | |
#curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash - | |
#sudo apt-get install -y nodejs | |
#sudo apt-get install -y couchdb | |
#sudo npm install -g gulp bower browser-sync nodemon | |
git config --global user.name "Brian Dunnette" | |
git config --global user.email "[email protected]" | |
git config --global push.default simple | |
keyfile=~/.ssh/id_rsa | |
ssh-keygen -t rsa -f $keyfile -N '' | |
cat $keyfile.pub |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment