From bfd3f8d7f2fc4a39734e1bd28670858c5e9a959f Mon Sep 17 00:00:00 2001 From: Michele Cereda Date: Sun, 17 Apr 2022 20:21:05 +0200 Subject: [PATCH] Added fwupd notes to the knowledge base --- knowledge base/linux/fwupd.md | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 knowledge base/linux/fwupd.md diff --git a/knowledge base/linux/fwupd.md b/knowledge base/linux/fwupd.md new file mode 100644 index 0000000..d639d9c --- /dev/null +++ b/knowledge base/linux/fwupd.md @@ -0,0 +1,31 @@ +# fwupd + +## TL;DR + +```shell +# display all detected devices +fwupdmgr get-devices + +# download the latest metadata from lvfs +fwupdmgr refresh + +# display available updates, if present +fwupdmgr get-updates + +# download and apply all available updates +fwupdmgr update + +# report the status of an update +fwupdmgr report-history + +# clear the local history of updates +fwupdmgr clear-history +``` + +## Further readings + +- [Website] +- [GitHub] page + +[github]: https://github.com/fwupd/fwupd +[website]: https://fwupd.org/