Dann ist es nur noch als Wurzel (root) beschreibbar.
Wechseln Sie zum Stammkontext (root)
su -l root
echo 1 > /sys/devices/system/cpu/intel_pstate/no_turbo
Original comment in English
Then it is only writable as root.
Switch to root context
su -l root
echo 1 > /sys/devices/system/cpu/intel_pstate/no_turbo
Erstellen Sie eine systemd-Einheit für die Aufgabe
Create a systemd unit for the task
/etc/systemd/system/disable_intel_turbo.service
[Unit]
Description=Enable intel_pstate.no_turbo
[Service]
Type=oneshot
ExecStart=/usr/bin/sh -c "echo 1 > /sys/devices/system/cpu/intel_pstate/no_turbo"
[Install]
WantedBy=multi-user.target
Aktivieren und starten Sie den Dienst
Enable and start the service
systemctl enable --now disable_intel_turbo.service