Skip to content

Instantly share code, notes, and snippets.

@yratof
Created November 26, 2016 14:08
Show Gist options
  • Save yratof/5312b89c3f3fb7f49fd14594916290bc to your computer and use it in GitHub Desktop.
Save yratof/5312b89c3f3fb7f49fd14594916290bc to your computer and use it in GitHub Desktop.
Installing 3D PrinterOS on a chip
# 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