OctoPrint: verschil tussen versies

Uit WaaaghPedia
Geen bewerkingssamenvatting
 
 
(12 tussenliggende versies door dezelfde gebruiker niet weergegeven)
Regel 1: Regel 1:
https://octoprint.org/
{{Software
|Afbeelding=OctoPrintLogo.png
|Versie=0.17
|Website=https://octoprint.org/
|Docs=https://docs.octoprint.org/en/master/
|Community=https://community.octoprint.org/
}}
 
 
 
==Installatie==
# Download Octoprint
# Flash het op een SD kaart.
# Start je PI
# Ga naar de interface http://octopi.local
# en volg de stappen die de website presenteert
 
===OctoPrint Settings===
====GCODE SAcripts====
'''Before print job starts'''
<pre>G28 ; home all axes (X, Y, and Z)</pre>
 
'''After print job completes'''
<pre>G1 X0 Y280 F9000; Presenteer bed.</pre>
 
'''Bron'''
* [[G-code]]
 
{{Alertbox/Warning
|info=Waarschuwing, Shit is not up to date
}}
 
==Plugins==
* AutomaticShutdown
* CR-10 Leveling


== Extra Software installeren ==
== Extra Software installeren ==
sudo apt-get install python-pip python-dev python-setuptools python-virtualenv git libyaml-dev build-essential
sudo apt-get install python-pip python-dev python-setuptools python-virtualenv git libyaml-dev build-essential
==Extra Gcode==
[[3D Printen/Gcode]]


== Update ==
== Update ==
Regel 12: Regel 43:
pip install --upgrade pip
pip install --upgrade pip


== Webcam ==
https://github.com/PrusaMK2Users/MK2_Tips_and_Tricks/wiki/OctoPrint-Webcam-Setup


==SSL==
==SSL==
Regel 41: Regel 68:
https://github.com/PrusaMK2Users/MK2_Tips_and_Tricks/wiki/Generating-a-new-SSL-certificate-for-OctoPi
https://github.com/PrusaMK2Users/MK2_Tips_and_Tricks/wiki/Generating-a-new-SSL-certificate-for-OctoPi


[[Category:Selfhosted]]
[[Category:SelfHosted Software]]
[[Categorie:Linux Software]]
[[Categorie:3D Printen]]

Huidige versie van 26 apr 2020 om 13:00


{{{Title}}}
Website https://octoprint.org/
Community https://community.octoprint.org/
Documentatie https://docs.octoprint.org/en/master/
Versie 0.17



Installatie

  1. Download Octoprint
  2. Flash het op een SD kaart.
  3. Start je PI
  4. Ga naar de interface http://octopi.local
  5. en volg de stappen die de website presenteert

OctoPrint Settings

GCODE SAcripts

Before print job starts

G28 ; home all axes (X, Y, and Z)

After print job completes

G1 X0 Y280 F9000; Presenteer bed.

Bron


Waarschuwing, Shit is not up to date

Plugins

  • AutomaticShutdown
  • CR-10 Leveling

Extra Software installeren

sudo apt-get install python-pip python-dev python-setuptools python-virtualenv git libyaml-dev build-essential

Update

sudo apt-get update

pip install --upgrade pip


SSL

# Open a root shell
sudo -i

# Change to the /etc/ssl directory, where certificates are stored.
cd /etc/ssl/

# Request a new self-signed certificate, with a 10-year expiration, and 4096-bit RSA key
# It will ask you a lot of questions for details to put in the certificate.
openssl req -x509 -nodes -days 3650 -newkey rsa:4096 -keyout newcert.key -out newcert.crt

# Concatenate the new key and self-signed certificate into a single file the way HAProxy likes it
# Feel free to use a different name than 'snakeoil.pem' so long as you edit haproxy.cfg to match
cat newcert.crt newcert.key > snakeoil.pem

# Restart HAProxy so that the new certificate takes effect.
systemctl restart haproxy

# Leave the root shell and go back to normal.
exit

https://github.com/PrusaMK2Users/MK2_Tips_and_Tricks/wiki/Generating-a-new-SSL-certificate-for-OctoPi