XYZ File Manager
Current Path:
/lib/systemd
lib
/
systemd
/
📁
..
📁
boot
📁
catalog
📄
libsystemd-shared.abignore
(100 B)
📁
network
📁
ntp-units.d
📄
purge-nobody-user
(2.3 KB)
📄
resolv.conf
(710 B)
📁
system
📁
system-generators
📁
system-preset
📁
system-shutdown
📁
system-sleep
📄
systemd
(95.74 KB)
📄
systemd-ac-power
(15.03 KB)
📄
systemd-backlight
(35.38 KB)
📄
systemd-binfmt
(23.31 KB)
📄
systemd-bless-boot
(31.6 KB)
📄
systemd-boot-check-no-failures
(15.3 KB)
📄
systemd-cgroups-agent
(15.24 KB)
📄
systemd-coredump
(67.73 KB)
📄
systemd-cryptsetup
(92.37 KB)
📄
systemd-export
(43.55 KB)
📄
systemd-fsck
(31.31 KB)
📄
systemd-growfs
(23.26 KB)
📄
systemd-hibernate-resume
(15.05 KB)
📄
systemd-hostnamed
(51.91 KB)
📄
systemd-initctl
(23.34 KB)
📄
systemd-integritysetup
(23.52 KB)
📄
systemd-journald
(181.14 KB)
📄
systemd-localed
(51.69 KB)
📄
systemd-logind
(295.72 KB)
📄
systemd-makefs
(15.25 KB)
📄
systemd-measure
(51.93 KB)
📄
systemd-modules-load
(23.54 KB)
📄
systemd-network-generator
(43.66 KB)
📄
systemd-pcrphase
(31.54 KB)
📄
systemd-pstore
(23.41 KB)
📄
systemd-quotacheck
(15.08 KB)
📄
systemd-random-seed
(27.3 KB)
📄
systemd-remount-fs
(19.28 KB)
📄
systemd-reply-password
(15.27 KB)
📄
systemd-rfkill
(23.35 KB)
📄
systemd-shutdown
(51.51 KB)
📄
systemd-sleep
(31.37 KB)
📄
systemd-socket-proxyd
(31.49 KB)
📄
systemd-sulogin-shell
(19.34 KB)
📄
systemd-sysctl
(27.55 KB)
📄
systemd-sysroot-fstab-check
(56.16 KB)
📄
systemd-sysupdate
(124.7 KB)
📄
systemd-sysv-install
(0 B)
📄
systemd-timedated
(47.63 KB)
📄
systemd-udevd
(0 B)
📄
systemd-update-done
(15.27 KB)
📄
systemd-update-helper
(3.76 KB)
📄
systemd-update-utmp
(23.36 KB)
📄
systemd-user-runtime-dir
(23.3 KB)
📄
systemd-user-sessions
(15.05 KB)
📄
systemd-vconsole-setup
(19.3 KB)
📄
systemd-veritysetup
(23.47 KB)
📄
systemd-volatile-root
(23.3 KB)
📄
systemd-xdg-autostart-condition
(15.3 KB)
📁
user
📁
user-environment-generators
📁
user-generators
📁
user-preset
Editing: systemd-update-helper
#!/usr/bin/bash # SPDX-License-Identifier: LGPL-2.1-or-later set -eu set -o pipefail command="${1:?}" shift command -v systemctl >/dev/null || exit 0 case "$command" in install-system-units) systemctl --no-reload preset "$@" ;; install-user-units) systemctl --no-reload preset --global "$@" ;; remove-system-units) if [ -d /run/systemd/system ]; then systemctl --no-reload disable --now --no-warn "$@" else systemctl --no-reload disable --no-warn "$@" fi ;; remove-user-units) systemctl --global disable --no-warn "$@" [ -d /run/systemd/system ] || exit 0 users=$(systemctl list-units 'user@*' --legend=no | sed -n -r 's/.*user@([0-9]+).service.*/\1/p') for user in $users; do SYSTEMD_BUS_TIMEOUT=15s \ systemctl --user -M "$user@" disable --now --no-warn "$@" & done wait ;; mark-restart-system-units) [ -d /run/systemd/system ] || exit 0 for unit in "$@"; do systemctl set-property "$unit" Markers=+needs-restart & done wait ;; mark-reload-system-units) [ -d /run/systemd/system ] || exit 0 for unit in "$@"; do systemctl set-property "$unit" Markers=+needs-reload & done wait ;; mark-restart-user-units) [ -d /run/systemd/system ] || exit 0 users=$(systemctl list-units 'user@*' --legend=no | sed -n -r 's/.*user@([0-9]+).service.*/\1/p') for user in $users; do for unit in "$@"; do SYSTEMD_BUS_TIMEOUT=15s \ systemctl --user -M "$user@" set-property "$unit" Markers=+needs-restart & done done wait ;; mark-reload-user-units) [ -d /run/systemd/system ] || exit 0 users=$(systemctl list-units 'user@*' --legend=no | sed -n -r 's/.*user@([0-9]+).service.*/\1/p') for user in $users; do for unit in "$@"; do SYSTEMD_BUS_TIMEOUT=15s \ systemctl --user -M "$user@" set-property "$unit" Markers=+needs-reload & done done wait ;; system-reload-restart|system-reload|system-restart) if [ -n "$*" ]; then echo "Unexpected arguments for '$command': $*" exit 2 fi [ -d /run/systemd/system ] || exit 0 if [[ "$command" =~ reload ]]; then systemctl daemon-reload fi if [[ "$command" =~ restart ]]; then systemctl reload-or-restart --marked fi ;; user-reload-restart|user-reload|user-restart|user-reexec) if [ -n "$*" ]; then echo "Unexpected arguments for '$command': $*" exit 2 fi [ -d /run/systemd/system ] || exit 0 users=$(systemctl list-units 'user@*' --legend=no | sed -n -r 's/.*user@([0-9]+).service.*/\1/p') if [[ "$command" =~ reexec ]]; then for user in $users; do SYSTEMD_BUS_TIMEOUT=15s \ systemctl --user -M "$user@" daemon-reexec & done wait fi if [[ "$command" =~ reload ]]; then for user in $users; do SYSTEMD_BUS_TIMEOUT=15s \ systemctl --user -M "$user@" daemon-reload & done wait fi if [[ "$command" =~ restart ]]; then for user in $users; do SYSTEMD_BUS_TIMEOUT=15s \ systemctl --user -M "$user@" reload-or-restart --marked & done wait fi ;; *) echo "Unknown verb '$command'" exit 3 ;; esac
Upload File
Create Folder