The program systemd is the process with process ID 1. It is responsible for initializing the system in the required way. systemd is started directly by the kernel and resists signal 9, which normally terminates processes. All other programs are either started directly by systemd or by one of its child processes.
Systemd is the first process that is started by the kernel during boot. It has the process ID of 1. It is responsible for initializing and managing other processes and services on the system. References:https://documentation.suse.com/sles/15-SP3/html/SLES-all/cha-systemd-basics.html#sec-systemd-intro
Question 21
Which type of files are used for inter-process communications? (Choose two)
Options:
A.
Array
B.
Pipe
C.
udev
D.
Redirect
E.
Block
F.
Character
G.
Socket
Answer:
B, G
Explanation:
Explanation:
The types of files that are used for inter-process communications are pipe and socket files. Pipe files are used for unidirectional data flow between two processes. They can be created with the mkfifo command or with the | operator in a shell command. Socket files are used for bidirectional data exchange between processes on the same or different machines. They can be created with various system calls or commands depending on the protocol and domain. References: https://documentation.suse.com/sles/15-SP3/html/SLES-all/sec-cli-pipes.html https://documentation.suse.com/sles/15-SP3/html/SLES-all/sec-cli-sockets.html