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