diff options
author | Lennart Poettering <lennart@poettering.net> | 2025-01-16 22:40:07 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-16 22:40:07 +0100 |
commit | 86d6e268be58e60441f54e4160ea5dc2ba75afbb (patch) | |
tree | 1630ce11c5ee7c71b98d05ddcf3cfa1e5f897b4e | |
parent | update TODO (diff) | |
parent | README: add sgx to list of required groups (diff) | |
download | systemd-86d6e268be58e60441f54e4160ea5dc2ba75afbb.tar.xz systemd-86d6e268be58e60441f54e4160ea5dc2ba75afbb.zip |
Two readme tweaks (#36053)
-rw-r--r-- | README | 4 | ||||
-rw-r--r-- | docs/HACKING.md | 12 |
2 files changed, 8 insertions, 8 deletions
@@ -383,8 +383,8 @@ USERS AND GROUPS: need to be resolvable by getgrnam() at any time, even in the very early boot stages, where no other databases and network are available: - audio, cdrom, clock, dialout, disk, input, kmem, kvm, lp, render, tape, - tty, video + audio, cdrom, clock, dialout, disk, input, kmem, kvm, lp, render, + sgx, tape, tty, video During runtime, the journal daemon requires the "systemd-journal" system group to exist. New journal files will be readable by this group (but diff --git a/docs/HACKING.md b/docs/HACKING.md index e4359e277a..d302a15f28 100644 --- a/docs/HACKING.md +++ b/docs/HACKING.md @@ -50,7 +50,7 @@ To build and boot an OS image with the latest systemd installed: ```sh $ mkosi -f genkey # Generate signing keys once. $ mkosi -f sandbox meson compile -C build mkosi # (re-)build the OS image -$ sudo mkosi boot # Boot the image with systemd-nspawn. +$ run0 mkosi boot # Boot the image with systemd-nspawn. $ mkosi vm # Boot the image with qemu. ``` @@ -133,17 +133,17 @@ To upgrade the systemd packages on the host system to the newer versions built by mkosi, run the following: ```sh -dnf upgrade build/mkosi.builddir/<distribution>~<release>~<architecture>/*.rpm # Fedora/CentOS -apt-get install build/mkosi.builddir/<distribution>~<release>~<architecture>/*.deb # Debian/Ubuntu -pacman --upgrade --needed --noconfirm build/mkosi.builddir/<distribution>~<release>~<architecture>/*.pkg.tar # Arch Linux -zypper --non-interactive install --allow-unsigned-rpm build/mkosi.builddir/<distribution>~<release>~<architecture>/*.rpm # OpenSUSE +run0 dnf upgrade build/mkosi.builddir/<distribution>~<release>~<architecture>/*.rpm # Fedora/CentOS +run0 apt-get install build/mkosi.builddir/<distribution>~<release>~<architecture>/*.deb # Debian/Ubuntu +run0 pacman --upgrade --needed --noconfirm build/mkosi.builddir/<distribution>~<release>~<architecture>/*.pkg.tar # Arch Linux +run0 zypper --non-interactive install --allow-unsigned-rpm build/mkosi.builddir/<distribution>~<release>~<architecture>/*.rpm # OpenSUSE ``` To downgrade back to the old version shipped by the distribution, run the following: ```sh -dnf downgrade "systemd*" # Fedora/CentOS +run0 dnf downgrade "systemd*" # Fedora/CentOS # TODO: Other distributions ``` |