Last active
July 4, 2018 19:36
-
-
Save hedlund/67035bffe05adf29f22914b46bafeb01 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/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