linux: remove typos

This commit is contained in:
thomasabishop 2024-02-26 19:45:24 +00:00
parent 22bad0856c
commit c3ce1a7e87
2 changed files with 10 additions and 13 deletions

View file

@ -8,8 +8,7 @@ tags:
## `cronie`
In Arch Linux I use `cronie` for cron jobs. (There is no cron service installed
by default). Install `cronie` and then enable it in systemd with: lorem ipsum
dolar sit avedfdfdfdfd dfdfdfdfdfdfd dfdfdfdfdfdfdfdfdfdf
by default). Install `cronie` and then enable it in systemd with:
```bash
systemctrl enable --now cronie.service

View file

@ -4,17 +4,15 @@ tags: [systems-programming]
# systemd
Once the [boot process](Boot_process.md) has completed and
the bootloader has located the kernel and injected it into memory the first user
space program runs: `init` (for _initialisation_). `init` is a
[daemon](Daemons.md) process that continues running until
shutdown and is responsible for starting all the processes that are
prerequisites for user space. For example: network connections, disk access,
user logins etc.
dsdddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddd
`init` is the parent of all processes: PID1. Whilst it does a lot of its work in
quick succession at boot time it is not limited to the this stage of the
lifescycle but runs continuously in reponse to new user events.
Once the [boot process](Boot_process.md) has completed and the bootloader has
located the kernel and injected it into memory the first user space program
runs: `init` (for _initialisation_). `init` is a [daemon](Daemons.md) process
that continues running until shutdown and is responsible for starting all the
processes that are prerequisites for user space. For example: network
connections, disk access, user logins etc. `init` is the parent of all
processes: PID1. Whilst it does a lot of its work in quick succession at boot
time it is not limited to the this stage of the lifescycle but runs continuously
in reponse to new user events.
On Linux systems `systemd` is used to implement `init`.