I'm experimenting with large changes to Linux system runtime parameters exposed through the sysfs virtual file system.
What is the most efficient way to maintain these parameters so that they persist across reboots on a RHEL/CentOS-style system?
Is it simply a case of dumping commands into /etc/rc.local? Is there an init script that's well-suited for this? I'm also thinking about standardization from a configuration management perspective. Is there a clean sysfs equivalent to sysctl
?
If it were me, I'd probably create an
/etc/sysfs.conf
, and an/etc/init.d/sysfsutils
init script. Then I could keep all of my sysfs related configs and options separate from everything else. With an init script, it could be managed and handled using the standard idioms for managing services and configurations through SysV init scripts (includingservice sysfsutils [start|stop|reload|restart|status]
on RHEL/CentOS (with a little extra work)).Even if I didn't bother with the
/etc/init.d/sysfsutils
script, I'd still put the options into/etc/sysfs.conf
and then call/process the contents of that file from a separate script (/etc/rc.local
, as a last/lazy option).Note: Debian and Debian-based distributions (Ubuntu, etc.) already do this, and ship an
/etc/sysfs.conf
config file and init script with their sysfsutils package. Grabbing those two files from a Debian/Ubuntu box (or the Debian source package for sysfsutils) would probably be a good way to start for replicating it yourself.You can also try udev rules depending on what you want to set. For example, on my system I set my SSDs to use the
deadline
scheduler via/etc/udev/rules.d/60-ssd-scheduler.rules
containing:You should be able to match any sysfs attributes via the ATTR mechanism.
Try the
sysfsutils
package. In particular,/etc/sysfs.conf
should help with this.For Fedora/RHEL/CentOS - the default method to configure sysfs and have it persist across reboots is to use tuned. tuned is a general system tuning infrastucture. For sysfs parameters, create a
[sysfs]
stanza in your configuration file, and provide a line per variable that you want to set and have persist across reboots.Also as Lennart Poettering pointed out - systemd has a native capability to provide sysfs settings via dropping a snippet in
/etc/tmpfiles.d/