Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
octopi [2019/03/21 18:50]
warmachine
octopi [2019/10/29 20:32] (current)
warmachine
Line 1: Line 1:
 ====== Building an Octopi Server With A Raspberry Pi ====== ====== Building an Octopi Server With A Raspberry Pi ======
 +
 +**<color #ed1c24>note: </color>**raspberry pi 4 will need the nightly build: https://storage.googleapis.com/octoprint/2019-06-24_2019-06-20-octopi-buster-lite-0.17.0.zip
 +
 +**<color #ff7f27>note: </color>** also worth noting that using the crappy mac bonjour protocol to find your printer is pretty...well..crap. IP scan for it using angryip: https://angryip.org. turn on mac address and mac vendor in the options and it will be easy to spot if it picks up an IP address.
  
  
Line 27: Line 31:
  
 <color #22b14c>apt-get update\\ <color #22b14c>apt-get update\\
 +\\
 raspi-config\\ raspi-config\\
 +\\
 update tool\\ update tool\\
 expand SD card\\ expand SD card\\
Line 39: Line 43:
  
 <color #22b14c>nano /etc/dhcpcd.conf\\ <color #22b14c>nano /etc/dhcpcd.conf\\
 +\\
 interface eth0\\ interface eth0\\
-static ip_address=192.168.1.48/24\\ +static ip_address=x.x.x.x/y\\ 
-static routers=192.168.1.1\\ +static routers=z.z.z.z\\ 
-static domain_name_servers=192.168.1.33\\ +static domain_name_servers=a.a.a.a\\ 
 +\\
 interface wlan0\\ interface wlan0\\
-static ip_address=192.168.1.xxx/24\\ +static ip_address=x.x.x.x/y\\ 
-static routers=192.168.1.1\\ +static routers=z.z.z.z\\ 
-static domain_name_servers=192.168.1.33\\</color>+static domain_name_servers=a.a.a.a</color>\\
  
 in the above example, we're editing the dhcpcd.conf to give the octopi static IPs. you really only need one or the other, depending on if you are hard-wiring or running your pi wireless (more common).\\ in the above example, we're editing the dhcpcd.conf to give the octopi static IPs. you really only need one or the other, depending on if you are hard-wiring or running your pi wireless (more common).\\
 +
 +**x.x.x.x** = your desired static IP followed by **y**, your subnet mask (for example /24) and finally **a.a.a.a**, your dns server\\
 +
Last modified: le 2019/03/21 18:50