Created
November 26, 2016 14:08
-
-
Save yratof/5312b89c3f3fb7f49fd14594916290bc to your computer and use it in GitHub Desktop.
Installing 3D PrinterOS on a chip
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
# Connect to wifi | |
nmcli device wifi list | |
sudo nmcli device wifi connect 'rasperrypi' ifname wlan0 | |
nmcli device status | |
# Update device | |
sudo apt-get update && sudo apt-get upgrade | |
# Set language | |
sudo apt-get update && sudo apt-get install locales && sudo dpkg-reconfigure locales && sudo locale-gen | |
# Install depends | |
sudo apt-get install python2.7 libusb-1.0 python-numpy python-opencv ca-certificates unzip ssh | |
mkdir 3dprinteros && cd 3dprinteros | |
# Download software | |
wget https://client-cdn-3dprinteros.azureedge.net/releases/3DPrinterOS-Client-5.9.11stable-build-18.zip | |
unzip 3DPrinterOS-Client-5.9.11stable-build-18.zip && rm 3D*.zip | |
# Open Cron | |
sudo crontab -e | |
# Paste this | |
@reboot python /home/chip/3dprinteros/launcher.py > /dev/null 2>&1 | |
# Reboot | |
sudo reboot |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment