Skip to content

Commit

Permalink
Add FAQ
Browse files Browse the repository at this point in the history
  • Loading branch information
foosel authored Mar 11, 2024
1 parent f68d82c commit 7969083
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,25 @@ <h1>OctoPrint APT repository</h1>
<p>Signing key: <a href="./octoprint.gpg.key">apt.octoprint.org/octoprint.gpg.key</a></p>
<p>GitHub: <a href="https://github.com/OctoPrint/apt.octoprint.org" target="_blank">github.com/OctoPrint/apt.octoprint.org</a></p>

<h2>RaspberryPi OS/OctoPi</h2>
<h2>Usage</h2>

<h3>RaspberryPi OS/OctoPi</h3>

<code>
curl -s --compressed "https://apt.octoprint.org/octoprint.gpg.key" | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/octoprint.gpg > /dev/null<br>
sudo curl -s --compressed -o /etc/apt/sources.list.d/octoprint.list "https://apt.octoprint.org/octoprint-bullseye-rpi.list"<br>
curl -s --compressed "https://foosel.github.io/apt.octoprint.org/octoprint.gpg.key" | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/octoprint.gpg > /dev/null<br>
sudo curl -s --compressed -o /etc/apt/sources.list.d/octoprint.list "https://foosel.github.io/apt.octoprint.org/octoprint-bullseye-rpi.list"<br>
sudo apt update<br>
</code>

<h2>FAQ</h2>

<h3>"I get an error on update: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 418208F07AD011A2"</h3>

Please re-import the public key, it has been updated:

<p><code>
curl -s --compressed "https://apt.octoprint.org/octoprint.gpg.key" | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/octoprint.gpg > /dev/null<br>
sudo apt update
</code></p>
</body>
</html>

0 comments on commit 7969083

Please sign in to comment.