What does the boot loader load into memory?
What does the kernel do once it is loaded into the computers memory?
What does the kernel do after setting up hardare and mounting the root filesystem?
What processes do not trace their origin ultimately to init?
For what is init responsible besides starting the system?
What is systemd?
What are systemd features?
How does systemd influence the init process?
What are example commands of systemd?
Starting, stopping, restarting a service on currently running system:
$ sudo systemctl start|stop|restart httpd.service
Enabling or disabling a system service from starting up at system boot:
$ sudo systemctl enable|disable httpd.service
Checking on the status of a service:
$ sudo systemctl status httpd.service