From 6edcac825f402dc06dc5a4c09edc809c263c0de4 Mon Sep 17 00:00:00 2001 From: Tastatur Date: Tue, 26 Dec 2023 00:41:27 +0100 Subject: [PATCH] Added page on OpenRC --- docs/alpine-desktop-setup/post-install/openrc.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/docs/alpine-desktop-setup/post-install/openrc.md b/docs/alpine-desktop-setup/post-install/openrc.md index e69de29..995c987 100644 --- a/docs/alpine-desktop-setup/post-install/openrc.md +++ b/docs/alpine-desktop-setup/post-install/openrc.md @@ -0,0 +1,15 @@ +# OpenRC + +Alpine Linux uses OpenRC as init system which has a few configuration option that can be changed. Most options are already explained in the `/etc/rc.conf` file which has to be edited. + +The boot process can be sped up if services are launched parallel (do note that this *can* lead to small issues). + +``` +rc_parallel="YES" +``` + +What is more important is enabling the logger which logs the rc process. Enable it though: + +``` +rc_logger="YES" +```