/snap/core18/3084/lib/systemd
NameSizeModeActions
network/-0755rm
system/-0755rm
system-generators/-0755rm
system-preset/-0755rm
system-shutdown/-0755rm
system-sleep/-0755rm
libsystemd-shared-237.so23677280644editdlrm
resolv.conf6990644editdlrm
set-cpufreq12460755editdlrm
systemd16203440755editdlrm
systemd-ac-power61280755editdlrm
systemd-backlight184160755editdlrm
systemd-binfmt103040755editdlrm
systemd-cgroups-agent102240755editdlrm
systemd-cryptsetup266320755editdlrm
systemd-dissect144080755editdlrm
systemd-fsck184240755editdlrm
systemd-fsckd225920755editdlrm
systemd-growfs184960755editdlrm
systemd-hibernate-resume102240755editdlrm
systemd-hostnamed225920755editdlrm
systemd-initctl144000755editdlrm
systemd-journald1290960755editdlrm
systemd-localed348800755editdlrm
systemd-logind2192720755editdlrm
systemd-makefs102240755editdlrm
systemd-modules-load144000755editdlrm
systemd-networkd16415520755editdlrm
systemd-networkd-wait-online185040755editdlrm
systemd-quotacheck103040755editdlrm
systemd-random-seed102240755editdlrm
systemd-remount-fs144000755editdlrm
systemd-reply-password102240755editdlrm
systemd-resolved3830400755editdlrm
systemd-rfkill184960755editdlrm
systemd-shutdown430800755editdlrm
systemd-sleep184960755editdlrm
systemd-socket-proxyd226000755editdlrm
systemd-sulogin-shell103040755editdlrm
systemd-sysctl144000755editdlrm
systemd-sysv-install13140755editdlrm
systemd-timedated266880755editdlrm
systemd-timesyncd389760755editdlrm
systemd-udevd5882240755editdlrm
systemd-update-utmp144000755editdlrm
systemd-user-sessions102240755editdlrm
systemd-veritysetup102240755editdlrm
systemd-volatile-root102240755editdlrm
Edit: /snap/core18/3084/lib/systemd/set-cpufreq (1246B)
#! /bin/sh # Set the CPU Frequency Scaling governor to "ondemand"/"powersave" where available set -eu FIRSTCPU=`cut -f1 -d- /sys/devices/system/cpu/online` AVAILABLE="/sys/devices/system/cpu/cpu$FIRSTCPU/cpufreq/scaling_available_governors" DOWN_FACTOR="/sys/devices/system/cpu/cpufreq/ondemand/sampling_down_factor" [ -f $AVAILABLE ] || exit 0 read governors < $AVAILABLE case $governors in *interactive*) GOVERNOR="interactive" break ;; *ondemand*) GOVERNOR="ondemand" case $(uname -m) in ppc64*) SAMPLING=100 ;; esac break ;; *powersave*) GOVERNOR="powersave" break ;; *) exit 0 ;; esac [ -n "${GOVERNOR:-}" ] || exit 0 echo "Setting $GOVERNOR scheduler for all CPUs" for CPUFREQ in /sys/devices/system/cpu/cpu*/cpufreq/scaling_governor do [ -f $CPUFREQ ] || continue echo -n $GOVERNOR > $CPUFREQ done if [ -n "${SAMPLING:-}" ] && [ -f $DOWN_FACTOR ]; then echo -n $SAMPLING > $DOWN_FACTOR fi