mirror of
https://github.com/systemd/systemd.git
synced 2024-11-05 15:21:37 +03:00
b41a3f66c9
Add custom Jekyll theme, logo, webfont and .gitignore FIXME: the markdown files have some H1 headers which need to be replaced with H2
27 lines
1.5 KiB
Markdown
27 lines
1.5 KiB
Markdown
---
|
|
layout: default
|
|
---
|
|
|
|
systemd is a suite of basic building blocks for a Linux system. It provides a system and service manager that runs as PID 1 and starts the rest of the system.
|
|
|
|
systemd provides aggressive parallelization capabilities, uses socket and D-Bus activation for starting services, offers on-demand starting of daemons, keeps track of processes using Linux control groups, maintains mount and automount points, and implements an elaborate transactional dependency-based service control logic. systemd supports SysV and LSB init scripts and works as a replacement for sysvinit.
|
|
|
|
Other parts include a logging daemon, utilities to control basic system configuration like the hostname, date, locale, maintain a list of logged-in users and running containers and virtual machines, system accounts, runtime directories and settings, and daemons to manage simple network configuration, network time synchronization, log forwarding, and name resolution.
|
|
|
|
See the introductory blog story and three status updates for a longer introduction. Also see the [Wikipedia article](https://en.wikipedia.org/wiki/systemd).
|
|
|
|
---
|
|
|
|
{% assign by_category = site.pages | group_by:"category" %}
|
|
{% assign extra_pages = site.data.extra_pages | group_by:"category" %}
|
|
{% assign merged = by_category | concat: extra_pages | sort:"name" %}
|
|
|
|
{% for pair in merged %}
|
|
{% if pair.name != "" %}
|
|
## {{ pair.name }}
|
|
{% assign sorted = pair.items | sort:"title" %}{% for page in sorted %}
|
|
* [{{ page.title }}]({{ page.url | relative_url }}){% endfor %}
|
|
{% endif %}
|
|
{% endfor %}
|
|
|