-
Notifications
You must be signed in to change notification settings - Fork 125
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add a page for composefs #663
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
= Composefs | ||
|
||
Fedora CoreOS introduced composefs enabled by default starting in Fedora 41. Composefs is an overlay filesystem where the data comes from the usual ostree deployement, and | ||
metadata are in the composefs file. The result is a truely read-only root (`/`) filesystem, increasing the system integrity and robustness, | ||
|
||
This is a first step towards a full verification of filesystem integrity, even at runtime. | ||
|
||
== What does it change ? | ||
|
||
The main visible change will be that the root filesystem (/) is now small and full (a few MB, 100% used). | ||
|
||
== Known issues | ||
|
||
=== Kdump | ||
|
||
Right now, this prevents kdump from generating it's initramfs as it get confused by the read-only filesystem. | ||
jbtrystram marked this conversation as resolved.
Show resolved
Hide resolved
|
||
If you want to use kdump and export kernels dumps to the local machine, composefs must be disabled. | ||
A workaround is to configure kdump with a remote target such as ssh or nfs. | ||
The kdump upstream developers are working on a fix. We will update this page when the workaround is no longer needed. | ||
|
||
See [https://github.com/rhkdump/kdump-utils/pull/28 rhkdump/kdump-utils#28]. | ||
jbtrystram marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
=== Top-level directories | ||
|
||
Another consequence is that it is now impossible to create top-level directories in `/`. | ||
A common use case for those top level directories is to use them as mount points. | ||
We recommend using sub directories in `/var` instead. | ||
Currently, the only way around that is to disable composefs as shown below. | ||
|
||
== Disable composefs | ||
|
||
Composefs can be disabled through a kernel argument: `ostree.prepare-root.composefs=0`. | ||
|
||
.Disabling composefs at provisionning | ||
[source,yaml,subs="attributes"] | ||
---- | ||
variant: fcos | ||
version: {butane-latest-stable-spec} | ||
kernel_arguments: | ||
should_exist: | ||
- ostree.prepare-root.composefs=0 | ||
---- | ||
|
||
jbtrystram marked this conversation as resolved.
Show resolved
Hide resolved
|
||
.Disabling composefs on a running FCOS system | ||
[source,bash] | ||
---- | ||
$ sudo rpm-ostree kargs --append='ostree.prepare-root.composefs=0' | ||
---- | ||
Note that a reboot is required for the change to take effect. | ||
|
||
jbtrystram marked this conversation as resolved.
Show resolved
Hide resolved
|
||
== Links | ||
|
||
https://fedoraproject.org/wiki/Changes/ComposefsAtomicCoreOSIoT |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i'm really hoping we can have kdump fixed before F41 gets promoted to our
stable
stream.