From e61129519756b23d1573d0b3c0cc2fb75ec35372 Mon Sep 17 00:00:00 2001 From: Adrien Thebo Date: Tue, 9 Aug 2022 08:02:55 -0700 Subject: [PATCH] rpm-ostree: add page (#8277) * rpm-ostree: add page * rpm-ostree: amend example description wording Co-authored-by: CleanMachine1 <78213164+CleanMachine1@users.noreply.github.com> * rpm-ostree: fix tldr variable syntax, drop install apply-live example * Update pages/linux/rpm-ostree.md Co-authored-by: K.B.Dharun Krishna * Update pages/linux/rpm-ostree.md Co-authored-by: marchersimon <50295997+marchersimon@users.noreply.github.com> * Update pages/linux/rpm-ostree.md Co-authored-by: K.B.Dharun Krishna Co-authored-by: CleanMachine1 <78213164+CleanMachine1@users.noreply.github.com> Co-authored-by: K.B.Dharun Krishna Co-authored-by: marchersimon <50295997+marchersimon@users.noreply.github.com> --- pages/linux/rpm-ostree.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 pages/linux/rpm-ostree.md diff --git a/pages/linux/rpm-ostree.md b/pages/linux/rpm-ostree.md new file mode 100644 index 000000000..96e8695fe --- /dev/null +++ b/pages/linux/rpm-ostree.md @@ -0,0 +1,25 @@ +# rpm-ostree + +> A hybrid image/package system. +> Manage ostree deployments, package layers, filesystem overlays, and boot configuration. +> More information: . + +- Show rpm-ostree deployments in the order they will appear in the bootloader: + +`rpm-ostree status` + +- Show packages which are outdated and can be updated: + +`rpm-ostree upgrade --preview` + +- Prepare a new ostree deployment with upgraded packages and reboot into it: + +`rpm-ostree upgrade --reboot` + +- Reboot into the previous ostree deployment: + +`rpm-ostree rollback --reboot` + +- Install a package into a new ostree deployment and reboot into it: + +`rpm-ostree install {{package}} --reboot`