You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tutorials/systemd-essentials/index.mdx
+14-10Lines changed: 14 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,10 +1,10 @@
1
1
---
2
2
meta:
3
3
title: Learning systemd essentials
4
-
description: This page shows how to manage units on your server with systemd.
4
+
description: Learn the essentials of systemd, a core component of Linux systems, and master its usage with our in-depth tutorial, covering key concepts and practical examples.
5
5
content:
6
6
h1: Learning systemd essentials
7
-
paragraph: This page shows how to manage units on your server with systemd.
7
+
paragraph: Learn the essentials of systemd, a core component of Linux systems, and master its usage with our in-depth tutorial, covering key concepts and practical examples.
8
8
tags: systemd instances
9
9
categories:
10
10
- instances
@@ -87,7 +87,7 @@ systemctl list-unit-files
87
87
88
88
## Using units
89
89
90
-
The most common object that `systemd` manages and acts upon is a "`unit`".
90
+
The most common object that `systemd` manages and acts upon is a `unit`.
91
91
Units can be, for example, services (.service), devices (.device), mount points (.mount), or sockets (.socket).
92
92
93
93
You should always specify the complete name of the unit file, including its suffix (for example sshd.socket). A short form is available for .service files. For example `nginx` is equivalent to `nginx.service`.
@@ -157,7 +157,11 @@ To **disable** a unit to not start during bootup:
157
157
systemctl disable unit
158
158
```
159
159
160
-
Every service unit that is known to systemd may be started manually – even if it is disabled. To explicitly keep a service from running, use the **mask** command _(Attention: This makes it impossible to start the concerned service. Neither manually nor as a dependency. Use it carefully.)_:
160
+
Every service unit that is known to systemd may be started manually – even if it is disabled. To explicitly keep a service from running, use the **mask** command
161
+
162
+
<Messagetype="important">
163
+
This makes it impossible to start the concerned service either manually or as a dependency. Use it carefully.
164
+
</Message>
161
165
162
166
```s
163
167
systemctl mask unit
@@ -185,7 +189,7 @@ To shut down and **reboot** the system, type:
185
189
systemctl reboot
186
190
```
187
191
188
-
To shut down and **power-off** the system, run the following command:
192
+
To shut down and **poweroff** the system, run the following command:
189
193
190
194
```s
191
195
systemctl poweroff
@@ -272,10 +276,10 @@ journalctl -u unit
272
276
273
277
## Exploring units and unit files
274
278
275
-
To explore the content of a Unit File, some options are available.
276
-
A Unit File contains the parameters that are used by systemd to manage and run a unit.
279
+
To explore the content of a unit file, some options are available.
280
+
A unit file contains the parameters that are used by systemd to manage and run a unit.
277
281
278
-
To see the full content of a Unit file, type:
282
+
To see the full content of a unit file, type:
279
283
280
284
```s
281
285
systemctl cat unit
@@ -299,13 +303,13 @@ This command will give you a list in return, showing each parameter being manage
299
303
300
304
Systemctl allows you to edit unit files directly from the application, without needing to know the exact location of the file on the disk.
301
305
302
-
To add a snippet to an existing unit file, which can be used to append or overwrite configurations in the default Unit File, type:
306
+
To add a snippet to an existing unit file, which can be used to append or overwrite configurations in the default unit file, type:
303
307
304
308
```s
305
309
systemctl edit unit
306
310
```
307
311
308
-
It is also possible to modify the entire content of the Unit File instead of creating a snippet by using the `--full` flag:
312
+
It is also possible to modify the entire content of the unit file instead of creating a snippet by using the `--full` flag:
Copy file name to clipboardExpand all lines: tutorials/zabbix-monitoring/index.mdx
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,10 +1,10 @@
1
1
---
2
2
meta:
3
3
title: Monitoring Instances with Zabbix on Ubuntu Jammy Jellyfish (22.04 LTS)
4
-
description: Zabbix is an open-source monitoring solution for devices and services
4
+
description: Learn how to set up Zabbix monitoring on Scaleway with our step-by-step tutorial. Discover how to efficiently monitor your infrastructure and applications with this comprehensive guide.
5
5
content:
6
6
h1: Monitoring Instances with Zabbix on Ubuntu Jammy Jellyfish (22.04 LTS)
7
-
paragraph: Zabbix is an open-source monitoring solution for devices and services
7
+
paragraph: Learn how to set up Zabbix monitoring on Scaleway with our step-by-step tutorial. Discover how to efficiently monitor your infrastructure and applications with this comprehensive guide.
0 commit comments