From df2605817289a9d7f2e083839ef32448a59eaf19 Mon Sep 17 00:00:00 2001 From: Nicholas Hubbard Date: Mon, 4 Apr 2016 12:19:13 -0400 Subject: [PATCH] Add installation script for ease of installation. --- install.sh | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 install.sh diff --git a/install.sh b/install.sh new file mode 100644 index 00000000..ad4d2cb3 --- /dev/null +++ b/install.sh @@ -0,0 +1,56 @@ +# $$\ $$\ $$\ $$\ $$\ $$\ $$$$$$\ +# $$$\ $$$ | \__| $$$\ $$$ |\__| $$ __$$\ +# $$$$\ $$$$ | $$$$$$\ $$$$$$\ $$\ $$$$$$$\ $$$$\ $$$$ |$$\ $$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\ \__/ $$ | +# $$\$$\$$ $$ | \____$$\ $$ __$$\ $$ |$$ _____|$$\$$\$$ $$ |$$ |$$ __$$\ $$ __$$\ $$ __$$\ $$ __$$\ $$$$$$ | +# $$ \$$$ $$ | $$$$$$$ |$$ / $$ |$$ |$$ / $$ \$$$ $$ |$$ |$$ | \__|$$ | \__|$$ / $$ |$$ | \__|$$ ____/ +# $$ |\$ /$$ |$$ __$$ |$$ | $$ |$$ |$$ | $$ |\$ /$$ |$$ |$$ | $$ | $$ | $$ |$$ | $$ | +# $$ | \_/ $$ |\$$$$$$$ |\$$$$$$$ |$$ |\$$$$$$$\ $$ | \_/ $$ |$$ |$$ | $$ | \$$$$$$ |$$ | $$$$$$$$\ +# \__| \__| \_______| \____$$ |\__| \_______|\__| \__|\__|\__| \__| \______/ \__| \________| +# $$\ $$ | +# \$$$$$$ | +# \______/ +# +# This is an installer script for MagicMirror2. It works well enough +# that it can detect if you have Node installed, run a binary script +# and then download and run MagicMirror2. +sudo apt-get install curl wget build-essential unzip +ARM=$(uname -m) # Determine which Pi is running. +NODE_LATEST="v5.10.0" # Set the latest version here. +6L_HASH="019a257faa5eebf6304686dfeffdbcb4c22f0547aa366f6e563aad39ab1b1ab1" # Set the armv6l hash here. +7L_HASH="3f7524d3db60175c2323bb2a0a13ad1ca7d47d4ede6f42834b6b8425be70e0a2" # Set the armv7l hash here. +DOWNLOAD_URL="https://nodejs.org/dist/latest/node-$NODE_LATEST-linux-$ARM.tar.gz" # Construct the download URL. +wget $DOWNLOAD_URL # Download the file given. +if [ $ARM = "armv6l" ]; then + if [ -f "node-$NODE_LATEST-linux-armv6l.tar.gz"]; then + COMMAND256 = "sha256sum node-$NODE_LATEST-linux-armv6l.tar.gz" + if [ $($COMMAND256) = "019a257faa5eebf6304686dfeffdbcb4c22f0547aa366f6e563aad39ab1b1ab1" ]; then + echo "Node.js was downloaded and verified successfully." + else + echo "Node.js was downloaded, but verification failed. Make sure sha256sum works." + exit 1 + fi + fi +elif [ $ARM = "armv7l" ]; then + if [ -f "node-$NODE_LATEST-linux-armv7l.tar.gz" ]; then + COMMAND256 = "sha256sum node-$NODE_LATEST-linux-armv7l.tar.gz" + if [ $($COMMAND256) = "3f7524d3db60175c2323bb2a0a13ad1ca7d47d4ede6f42834b6b8425be70e0a2" ]; then + echo "Node.js was downloaded and verified successfully." + else + echo "Node.js was downloaded, but verification failed. Make sure sha256sum works." + exit 1 + fi + fi +fi +tar xvf node-$NODE_LATEST-linux-$ARM.tar.gz +cd node* +sudo cp -R * /usr/local +cd .. +rm -rf node* +# Run Node checks to make sure Node works properly. +curl -sL https://deb.nodesource.com/test | bash - +npm config set loglevel info +wget https://github.com/nhubbard/MagicMirror/archive/v2-beta.zip +unzip v2-beta.zip +cd MagicMirror-2-beta +npm install +echo "We're ready! Run `npm start` from the MagicMirror-2-beta directory (not over SSH) and enjoy MagicMirror2!"