Systemd: Difference between revisions
No edit summary |
|||
| (11 intermediate revisions by the same user not shown) | |||
| Line 3: | Line 3: | ||
== Kernel settings == | == Kernel settings == | ||
First of all you need a recent kernel version >= | First of all you need a recent kernel version >=4.2 and some [[Kernel#systemd|kernel options]] set. | ||
== Installation == | == Installation == | ||
| Line 57: | Line 57: | ||
[Network] | [Network] | ||
DHCP=yes | DHCP=yes | ||
Domains=domain.local | |||
[DHCP] | |||
UseDomains=yes | |||
</pre> | </pre> | ||
}} | }} | ||
{{Root|systemctl enable systemd-networkd.socket}} | |||
== Network Name Resolution manager == | == Network Name Resolution manager == | ||
| Line 64: | Line 70: | ||
=== systemd-resolved === | === systemd-resolved === | ||
{{File|/etc/systemd/resolved.conf| | {{File|/etc/systemd/resolved.conf.d/resolved.conf| | ||
<pre> | <pre> | ||
[Resolve] | [Resolve] | ||
DNS=192.168.0.1 | DNS=192.168.0.1 | ||
</pre> | </pre> | ||
}} | }} | ||
| Line 82: | Line 88: | ||
=== systemd-timesyncd === | === systemd-timesyncd === | ||
{{File|/etc/systemd/timesyncd.conf| | {{File|/etc/systemd/timesyncd.conf.d/timesyncd.conf| | ||
<pre> | <pre> | ||
[Time] | [Time] | ||
NTP=192.168.0.1 | |||
</pre> | </pre> | ||
}} | }} | ||
| Line 92: | Line 98: | ||
{{Root|systemctl start systemd-timesyncd.service}} | {{Root|systemctl start systemd-timesyncd.service}} | ||
== Enable tty login == | |||
{{Root|systemctl enable getty@tty1.service}} | |||
== Enable sshd connectivity == | == Enable sshd connectivity == | ||
| Line 113: | Line 122: | ||
{{Root|timedatectl set-timezone Europe/Berlin}} | {{Root|timedatectl set-timezone Europe/Berlin}} | ||
Ensure the system RTC is in UTC, this might require setting Windows to UTC via a registry key when dual-booting. | |||
{{Root|timedatectl set-local-rtc 0}} | |||
=== Keyboard Layout === | === Keyboard Layout === | ||
| Line 124: | Line 137: | ||
Edits /etc/locale.conf. | Edits /etc/locale.conf. | ||
{{Root|<nowiki>localectl set-locale LANG="en_US. | {{Root|<nowiki>localectl set-locale LANG="en_US.UTF-8"</nowiki>}} | ||
The systemd localectl commands sets the system locale, if you want to set your user locale use /etc/env.d/02locale. | The systemd localectl commands sets the system locale, if you want to set your user locale use /etc/env.d/02locale. | ||
| Line 143: | Line 156: | ||
{{Root|systemctl enable systemd-journal-gatewayd.socket}} | {{Root|systemctl enable systemd-journal-gatewayd.socket}} | ||
cronie: | cronie: | ||
| Line 165: | Line 174: | ||
{{Root|systemctl enable nmbd.service}} | {{Root|systemctl enable nmbd.service}} | ||
{{Root|systemctl enable winbindd.service}} | {{Root|systemctl enable winbindd.service}} | ||
SSSD: | |||
{{Root|systemctl enable sssd.service}} | |||
mdadm: | mdadm: | ||
| Line 174: | Line 186: | ||
{{Root|systemctl enable postfix.service}} | {{Root|systemctl enable postfix.service}} | ||
NFS (client): | |||
{{Root|systemctl enable rpcstatd.service}} | {{Root|systemctl enable rpcstatd.service}} | ||
NFS (server): | |||
{{Root|systemctl enable nfs-server.service}} | {{Root|systemctl enable nfs-server.service}} | ||
Latest revision as of 09:51, 18 March 2020
Description
systemd is a system and session manager for Linux also including udev nowadays.
Kernel settings
First of all you need a recent kernel version >=4.2 and some kernel options set.
Installation
*/* build_options: jobs=5 -recommended_tests */* systemd sys-apps/systemd seccomp
Now we need to reinstall packages with the systemd option set.
Network
You can find out what the network device will be named by running:
| Code: network device name |
ID_NET_NAME_MAC=enx005056a84955 ID_NET_NAME_PATH=enp11s0 |
systemd-networkd
This configuration will default to DHCP as long as the 10-static.network doesn't match.
[Match] Name=eno1 [Network] Address=192.168.0.88/24 Gateway=192.168.0.1 DNS=192.168.0.1
[Match] Name=en* [Network] DHCP=yes Domains=domain.local [DHCP] UseDomains=yes
Network Name Resolution manager
systemd-resolved
[Resolve] DNS=192.168.0.1
Network Time Synchronization (NTP)
systemd-timesyncd
[Time] NTP=192.168.0.1
Enable tty login
Enable sshd connectivity
Configuration
Hostname
Edits /etc/hostname and /etc/machine-info.
Timezone
Sets the /etc/localtime symlink.
Ensure the system RTC is in UTC, this might require setting Windows to UTC via a registry key when dual-booting.
Keyboard Layout
Edits /etc/vconsole.conf.
Localization
Edits /etc/locale.conf.
The systemd localectl commands sets the system locale, if you want to set your user locale use /etc/env.d/02locale.
Misc
Manually starting and stopping services
You'll find an overview of all installed services and sockets in /lib/systemd/system.
prints a status report of your systemd setup.
Enable additional/optional services
systemd-journal-gatewayd (accessible via port 19531):
cronie:
ntp:
MySQL:
Samba 4:
SSSD:
mdadm:
postfix:
NFS (client):
NFS (server):