aboutsummaryrefslogtreecommitdiffstats
path: root/docs/FAQ.md
diff options
context:
space:
mode:
authorElton Law <eltonlaw296@gmail.com>2020-08-02 17:05:51 -0400
committerKevinOConnor <kevin@koconnor.net>2020-08-03 14:16:34 -0400
commitfe84968bdcb1d17455ca6c2ffb9ed8d209dc85ed (patch)
treebf25af262fb24363b1a1a0b74df4e696d2ed227d /docs/FAQ.md
parent68e9a495dd49dc46f984858a45102925eef1e274 (diff)
downloadkutter-fe84968bdcb1d17455ca6c2ffb9ed8d209dc85ed.tar.gz
kutter-fe84968bdcb1d17455ca6c2ffb9ed8d209dc85ed.tar.xz
kutter-fe84968bdcb1d17455ca6c2ffb9ed8d209dc85ed.zip
docs: Add uninstall notes to faq
From comments in https://github.com/KevinOConnor/klipper/issues/1084 This documents the script added in 0ba1f5109d639ce92b7efe3ab88057e15694f4c4 Signed-off-by: Elton Law <eltonlaw296@gmail.com>
Diffstat (limited to 'docs/FAQ.md')
-rw-r--r--docs/FAQ.md11
1 files changed, 11 insertions, 0 deletions
diff --git a/docs/FAQ.md b/docs/FAQ.md
index 327bdaa9..ea407a21 100644
--- a/docs/FAQ.md
+++ b/docs/FAQ.md
@@ -24,6 +24,7 @@ Frequently asked questions
21. [Can I find out whether the printer has lost steps?](#can-i-find-out-whether-the-printer-has-lost-steps)
22. [Why does Klipper report errors? I lost my print!](#why-does-klipper-report-errors-i-lost-my-print)
23. [How do I upgrade to the latest software?](#how-do-i-upgrade-to-the-latest-software)
+24. [How do I uninstall klipper?](#how-do-i-uninstall-klipper)
### How can I donate to the project?
@@ -531,3 +532,13 @@ modify the printer configuration.
Note that the RESTART and FIRMWARE_RESTART g-code commands do not load
new software - the above "sudo service klipper restart" and "make
flash" commands are needed for a software change to take effect.
+
+### How do I uninstall Klipper?
+
+On the firmware end, nothing special needs to happen. Just follow the flashing directions for the new firmware.
+
+On the raspberry pi end, an uninstall script is available in [`scripts/klipper-uninstall.sh`](https://github.com/KevinOConnor/klipper/blob/master/scripts/klipper-uninstall.sh). Assuming you cloned `klipper` to `$HOME`
+```
+sudo ~/klipper/scripts/klipper-uninstall.sh
+rm -rf ~/klippy-env ~/klipper
+```