]> git.ipfire.org Git - thirdparty/systemd.git/blame - man/systemd-sysctl.service.xml
docs: note that udev doesn't deal with binary attribute values (#11383)
[thirdparty/systemd.git] / man / systemd-sysctl.service.xml
CommitLineData
9393a877
LP
1<?xml version="1.0"?>
2<!--*-nxml-*-->
12b42c76 3<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN" "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
9393a877 4<!--
572eb058 5 SPDX-License-Identifier: LGPL-2.1+
9393a877 6-->
14f01575
FS
7<refentry id="systemd-sysctl.service"
8 xmlns:xi="http://www.w3.org/2001/XInclude">
9393a877 9
798d3a52
ZJS
10 <refentryinfo>
11 <title>systemd-sysctl.service</title>
12 <productname>systemd</productname>
798d3a52 13 </refentryinfo>
9393a877 14
798d3a52
ZJS
15 <refmeta>
16 <refentrytitle>systemd-sysctl.service</refentrytitle>
17 <manvolnum>8</manvolnum>
18 </refmeta>
9393a877 19
798d3a52
ZJS
20 <refnamediv>
21 <refname>systemd-sysctl.service</refname>
22 <refname>systemd-sysctl</refname>
23 <refpurpose>Configure kernel parameters at boot</refpurpose>
24 </refnamediv>
9393a877 25
798d3a52 26 <refsynopsisdiv>
14f01575
FS
27 <cmdsynopsis>
28 <command>/usr/lib/systemd/systemd-sysctl</command>
29 <arg choice="opt" rep="repeat">OPTIONS</arg>
30 <arg choice="opt" rep="repeat"><replaceable>CONFIGFILE</replaceable></arg>
31 </cmdsynopsis>
798d3a52 32 <para><filename>systemd-sysctl.service</filename></para>
798d3a52 33 </refsynopsisdiv>
9393a877 34
798d3a52
ZJS
35 <refsect1>
36 <title>Description</title>
9393a877 37
b938cb90 38 <para><filename>systemd-sysctl.service</filename> is an early boot
798d3a52 39 service that configures
3ba3a79d 40 <citerefentry project='man-pages'><refentrytitle>sysctl</refentrytitle><manvolnum>8</manvolnum></citerefentry>
7382a3cc 41 kernel parameters by invoking <command>/usr/lib/systemd/systemd-sysctl</command>.</para>
9393a877 42
7382a3cc
ZJS
43 <para>When invoked with no arguments, <command>/usr/lib/systemd/systemd-sysctl</command> applies
44 all directives from configuration files listed in
45 <citerefentry><refentrytitle>sysctl.d</refentrytitle><manvolnum>5</manvolnum></citerefentry>.
46 If one or more filenames are passed on the command line, only the directives in these files are
47 applied.</para>
48
49 <para>In addition, <option>--prefix=</option> option may be used to limit which sysctl
50 settings are applied.</para>
14f01575 51
798d3a52 52 <para>See
2d56bdab 53 <citerefentry><refentrytitle>sysctl.d</refentrytitle><manvolnum>5</manvolnum></citerefentry>
7382a3cc
ZJS
54 for information about the configuration of sysctl settings. After sysctl configuration is
55 changed on disk, it must be written to the files in <filename>/proc/sys</filename> before it
56 takes effect. It is possible to update specific settings, or simply to reload all configuration,
57 see Examples below.</para>
798d3a52 58 </refsect1>
9393a877 59
14f01575
FS
60 <refsect1><title>Options</title>
61 <variablelist>
7382a3cc
ZJS
62 <varlistentry id='prefix'>
63 <term><option>--prefix=</option></term>
14f01575
FS
64 <listitem>
65 <para>Only apply rules with the specified prefix.</para>
66 </listitem>
67 </varlistentry>
68
3c51c626 69 <xi:include href="standard-options.xml" xpointer="cat-config" />
dcd5c891 70 <xi:include href="standard-options.xml" xpointer="no-pager" />
14f01575
FS
71 <xi:include href="standard-options.xml" xpointer="help" />
72 <xi:include href="standard-options.xml" xpointer="version" />
73
74 </variablelist>
75 </refsect1>
76
7382a3cc
ZJS
77 <refsect1>
78 <title>Examples</title>
79
80 <example>
81 <title>Reset all sysctl settings</title>
82
83 <programlisting>systemctl restart systemd-sysctl</programlisting>
84 </example>
85
86 <example>
87 <title>View coredump handler configuration</title>
88
89 <programlisting># sysctl kernel.core_pattern
90kernel.core_pattern = |/usr/libexec/abrt-hook-ccpp %s %c %p %u %g %t %P %I
91</programlisting>
92 </example>
93
94 <example>
95 <title>Update coredump handler configuration</title>
96
97 <programlisting># /usr/lib/systemd/systemd-sysctl --prefix kernel.core_pattern</programlisting>
98
99 <para>This searches all the directories listed in
100 <citerefentry><refentrytitle>sysctl.d</refentrytitle><manvolnum>5</manvolnum></citerefentry>
101 for configuration files and writes <filename>/proc/sys/kernel/core_pattern</filename>.</para>
102 </example>
103
104 <example>
105 <title>Update coredump handler configuration according to a specific file</title>
106
107 <programlisting># /usr/lib/systemd/systemd-sysctl 50-coredump.conf</programlisting>
108
109 <para>This applies all the settings found in <filename>50-coredump.conf</filename>.
110 Either <filename>/etc/sysctl.d/50-coredump.conf</filename>, or
111 <filename>/run/sysctl.d/50-coredump.conf</filename>, or
112 <filename>/usr/lib/sysctl.d/50-coredump.conf</filename> will be used, in the order
113 of preference.</para>
114 </example>
115
116 <para>See
117 <citerefentry project='man-pages'><refentrytitle>sysctl</refentrytitle><manvolnum>8</manvolnum></citerefentry>
118 for various ways to directly apply sysctl settings.</para>
119 </refsect1>
120
798d3a52
ZJS
121 <refsect1>
122 <title>See Also</title>
123 <para>
124 <citerefentry><refentrytitle>systemd</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
2d56bdab 125 <citerefentry><refentrytitle>sysctl.d</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
3ba3a79d 126 <citerefentry project='man-pages'><refentrytitle>sysctl</refentrytitle><manvolnum>8</manvolnum></citerefentry>,
798d3a52
ZJS
127 </para>
128 </refsect1>
9393a877
LP
129
130</refentry>