]> git.ipfire.org Git - thirdparty/systemd.git/blame - man/localectl.xml
tmpfiles: fix compilation without acl support
[thirdparty/systemd.git] / man / localectl.xml
CommitLineData
7cd28a8a
LP
1<?xml version='1.0'?> <!--*-nxml-*-->
2<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
3 "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
4
5<!--
6 This file is part of systemd.
7
8 Copyright 2012 Lennart Poettering
9
10 systemd is free software; you can redistribute it and/or modify it
11 under the terms of the GNU Lesser General Public License as published by
12 the Free Software Foundation; either version 2.1 of the License, or
13 (at your option) any later version.
14
15 systemd is distributed in the hope that it will be useful, but
16 WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 Lesser General Public License for more details.
19
20 You should have received a copy of the GNU Lesser General Public License
21 along with systemd; If not, see <http://www.gnu.org/licenses/>.
22-->
23
21ac6ff1
ZJS
24<refentry id="localectl" conditional='ENABLE_LOCALED'
25 xmlns:xi="http://www.w3.org/2001/XInclude">
7cd28a8a
LP
26
27 <refentryinfo>
28 <title>localectl</title>
29 <productname>systemd</productname>
30
31 <authorgroup>
32 <author>
33 <contrib>Developer</contrib>
34 <firstname>Lennart</firstname>
35 <surname>Poettering</surname>
36 <email>lennart@poettering.net</email>
37 </author>
38 </authorgroup>
39 </refentryinfo>
40
41 <refmeta>
42 <refentrytitle>localectl</refentrytitle>
43 <manvolnum>1</manvolnum>
44 </refmeta>
45
46 <refnamediv>
47 <refname>localectl</refname>
48 <refpurpose>Control the system locale and keyboard layout settings</refpurpose>
49 </refnamediv>
50
51 <refsynopsisdiv>
52 <cmdsynopsis>
310b59ed
ZJS
53 <command>localectl</command>
54 <arg choice="opt" rep="repeat">OPTIONS</arg>
55 <arg choice="req">COMMAND</arg>
7cd28a8a
LP
56 </cmdsynopsis>
57 </refsynopsisdiv>
58
59 <refsect1>
60 <title>Description</title>
61
62 <para><command>localectl</command> may be used to
63 query and change the system locale and keyboard layout
64 settings.</para>
65
66 <para>The system locale controls the language settings
67 of system services and of the UI before the user logs
68 in, such as the display manager, as well as the
69 default for users after login.</para>
70
71 <para>The keyboard settings control the keyboard
72 layout used on the text console and of the graphical
73 UI before the user logs in, such as the display
74 manager, as well as the default for users after
75 login.</para>
30f10abf
LP
76
77 <para>Use
78 <citerefentry><refentrytitle>systemd-firstboot</refentrytitle><manvolnum>1</manvolnum></citerefentry>
79 to initialize the system locale for mounted (but not
80 booted) system images.</para>
7cd28a8a
LP
81 </refsect1>
82
83 <refsect1>
84 <title>Options</title>
85
86 <para>The following options are understood:</para>
87
88 <variablelist>
7cd28a8a
LP
89 <varlistentry>
90 <term><option>--no-ask-password</option></term>
91
409dee2e 92 <listitem><para>Do not query the user
7cd28a8a
LP
93 for authentication for privileged
94 operations.</para></listitem>
95 </varlistentry>
96
7cd28a8a
LP
97 <varlistentry>
98 <term><option>--no-convert</option></term>
99
100 <listitem><para>If
101 <command>set-keymap</command> or
102 <command>set-x11-keymap</command> is
79640424 103 invoked and this option is passed, then
7cd28a8a
LP
104 the keymap will not be converted from
105 the console to X11, or X11 to console,
106 respectively.</para></listitem>
107 </varlistentry>
dfdebb1b 108
4f50d2ef
ZJS
109 <xi:include href="user-system-options.xml" xpointer="host" />
110
dfdebb1b
ZJS
111 <xi:include href="standard-options.xml" xpointer="help" />
112 <xi:include href="standard-options.xml" xpointer="version" />
113 <xi:include href="standard-options.xml" xpointer="no-pager" />
7cd28a8a
LP
114 </variablelist>
115
116 <para>The following commands are understood:</para>
117
118 <variablelist>
119 <varlistentry>
120 <term><command>status</command></term>
121
122 <listitem><para>Show current settings
123 of the system locale and keyboard
124 mapping.</para></listitem>
125 </varlistentry>
126
127 <varlistentry>
128 <term><command>set-locale LOCALE...</command></term>
129
130 <listitem><para>Set the system
131 locale. This takes one or more
132 assignments such as "LANG=de_DE.utf8",
133 "LC_MESSAGES=en_GB.utf8", and so
134 on. See
135 <citerefentry><refentrytitle>locale</refentrytitle><manvolnum>7</manvolnum></citerefentry>
136 for details on the available settings
137 and their meanings. Use
138 <command>list-locales</command> for a
139 list of available locales (see below).
140 </para></listitem>
141 </varlistentry>
142
143 <varlistentry>
144 <term><command>list-locales</command></term>
145
146 <listitem><para>List available locales
147 useful for configuration with
148 <command>set-locale</command>.</para></listitem>
149 </varlistentry>
150
151 <varlistentry>
152 <term><command>set-keymap MAP [TOGGLEMAP]</command></term>
153
154 <listitem><para>Set the system
2ebcf936
ZJS
155 keyboard mapping for the console and
156 X11. This takes a mapping name (such
157 as "de" or "us"), and possibly a
158 second one to define a toggle keyboard
7cd28a8a
LP
159 mapping. Unless
160 <option>--no-convert</option> is
409dee2e 161 passed, the selected setting is also
2ebcf936 162 applied as the default system keyboard
7cd28a8a
LP
163 mapping of X11, after converting it to
164 the closest matching X11 keyboard
165 mapping. Use
8bae5e6a 166 <command>list-keymaps</command> for a
7cd28a8a
LP
167 list of available keyboard mappings
168 (see below).</para></listitem>
169 </varlistentry>
170
171 <varlistentry>
172 <term><command>list-keymaps</command></term>
173
174 <listitem><para>List available
175 keyboard mappings for the console,
176 useful for configuration with
73524864 177 <command>set-keymap</command>.</para></listitem>
7cd28a8a
LP
178 </varlistentry>
179
180 <varlistentry>
cd4c6fb1 181 <term><command>set-x11-keymap LAYOUT [MODEL [VARIANT [OPTIONS]]]</command></term>
7cd28a8a
LP
182
183 <listitem><para>Set the system default
2ebcf936
ZJS
184 keyboard mapping for X11 and the
185 virtual console. This takes a keyboard
186 mapping name (such as
187 <literal>de</literal> or
188 <literal>us</literal>), and possibly a
189 model, variant, and options, see
7cd28a8a
LP
190 <citerefentry><refentrytitle>kbd</refentrytitle><manvolnum>4</manvolnum></citerefentry>
191 for details. Unless
192 <option>--no-convert</option> is
409dee2e 193 passed, the selected setting is also
2ebcf936 194 applied as the system console keyboard
7cd28a8a
LP
195 mapping, after converting it to the
196 closest matching console keyboard
197 mapping.</para></listitem>
198 </varlistentry>
199
50cfc579
LP
200 <varlistentry>
201 <term><command>list-x11-keymap-models</command></term>
202 <term><command>list-x11-keymap-layouts</command></term>
203 <term><command>list-x11-keymap-variants [LAYOUT]</command></term>
204 <term><command>list-x11-keymap-options</command></term>
205
206 <listitem><para>List available X11
207 keymap models, layouts, variants and
208 options, useful for configuration with
209 <command>set-keymap</command>. The
210 command
211 <command>list-x11-keymap-variants</command>
212 optionally takes a layout parameter to
213 limit the output to the variants
214 suitable for the specific
215 layout.</para></listitem>
216 </varlistentry>
7cd28a8a
LP
217 </variablelist>
218
219 </refsect1>
220
221 <refsect1>
222 <title>Exit status</title>
223
409dee2e 224 <para>On success, 0 is returned, a non-zero failure
7cd28a8a
LP
225 code otherwise.</para>
226 </refsect1>
227
21ac6ff1 228 <xi:include href="less-variables.xml" />
7cd28a8a
LP
229
230 <refsect1>
231 <title>See Also</title>
232 <para>
233 <citerefentry><refentrytitle>systemd</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
234 <citerefentry><refentrytitle>locale</refentrytitle><manvolnum>7</manvolnum></citerefentry>,
235 <citerefentry><refentrytitle>locale.conf</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
236 <citerefentry><refentrytitle>vconsole.conf</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
237 <citerefentry><refentrytitle>loadkeys</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
238 <citerefentry><refentrytitle>kbd</refentrytitle><manvolnum>4</manvolnum></citerefentry>,
310b59ed
ZJS
239 <ulink url="http://www.x.org/releases/current/doc/xorg-docs/input/XKB-Config.html">
240 The XKB Configuration Guide
241 </ulink>,
7cd28a8a 242 <citerefentry><refentrytitle>systemctl</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
30f10abf
LP
243 <citerefentry><refentrytitle>systemd-localed.service</refentrytitle><manvolnum>8</manvolnum></citerefentry>,
244 <citerefentry><refentrytitle>systemd-firstboot</refentrytitle><manvolnum>1</manvolnum></citerefentry>
7cd28a8a
LP
245 </para>
246 </refsect1>
247
248</refentry>