Skip to content

Instantly share code, notes, and snippets.

@hedlund
Last active July 4, 2018 19:36
Show Gist options
  • Save hedlund/67035bffe05adf29f22914b46bafeb01 to your computer and use it in GitHub Desktop.
Save hedlund/67035bffe05adf29f22914b46bafeb01 to your computer and use it in GitHub Desktop.
#!/bin/bash
set -e
ARCH="$(uname -m)";
if [ $ARCH != "aarch64" ] && [ $ARCH != "armv7l" ]; then
echo "Only ARM architecture supported at the moment..."
exit 1
fi
sudo apt-get update
sudo apt-get install -y x11-apps
sudo apt-get install -y gdebi
sudo apt-get install -y gpg
sudo apt-get install -y nano
sudo apt-get install -y wget
sudo apt-get install -y firefox-esr
sudo apt-get install -y geany
curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
sudo apt-get install -y nodejs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment