mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
35 lines
708 B
Plaintext
35 lines
708 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, linux]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# bootc
|
|
|
|
> Boot and upgrade via container images.
|
|
> Manage transactional, in-place operating system updates using OCI/Docker container images.
|
|
> More information: <https://manned.org/bootc>.
|
|
|
|
- Show deployments in the order they will appear in the bootloader:
|
|
|
|
`bootc status`
|
|
|
|
- Check if any updates are available:
|
|
|
|
`bootc upgrade --check`
|
|
|
|
- Prepare a new update and reboot into it:
|
|
|
|
`bootc upgrade --apply`
|
|
|
|
- Change OS base to new container image:
|
|
|
|
`bootc switch {{image}}`
|
|
|
|
- Reboot into the previous ostree deployment:
|
|
|
|
`bootc rollback`
|
|
|
|
- Apply transactional changes to the system configuration:
|
|
|
|
`bootc edit`
|