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` ## `cronie`
In Arch Linux I use `cronie` for cron jobs. (There is no cron service installed 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 by default). Install `cronie` and then enable it in systemd with:
dolar sit avedfdfdfdfd dfdfdfdfdfdfd dfdfdfdfdfdfdfdfdfdf
```bash ```bash
systemctrl enable --now cronie.service systemctrl enable --now cronie.service

View file

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