OctoPi (obsolete)

A Raspberry Pi distribution for 3d printers. It includes the OctoPrint host software for 3d printers out of the box and mjpg-streamer with RaspiCam support for live viewing of prints and timelapse video creation. - OctoPi

Config below is OBSOLOte - see Raspbian for system configuration.

Info below was only relevant for octopi distribution and is useless when running Octoprint standalone.

System SetupOBSOLETE

How to set up WiFi on a Raspberry Pi

$ sudo apt-get install wpasupplicant wireless-tools

# in /etc/wpa_supplicant/wpa_supplicant.conf
add 
network={
        ssid="YourSSID"
        psk="password"
        key_mgmt=WPA-PSK
}

static ip

# /etc/network/interfaces
source-directory /etc/network/interfaces.d

auto lo
iface lo inet loopback

iface eth0 inet manual

allow-hotplug wlan0
iface wlan0 inet static
  address 192.168.0.123
  netmask 255.255.255.0
  network 192.168.0.0
  broadcast 192.168.0.255
  gateway 192.168.0.254
  wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
iface default inet dhcp

How Do I Find Out My Linux Gateway

Webcam

moved to Webcam

Written on November 17, 2019, Last update on July 31, 2022
raspberry-pi linux-system