aboutsummaryrefslogtreecommitdiff
path: root/docs/wiki/system/service-management.txt
diff options
context:
space:
mode:
Diffstat (limited to 'docs/wiki/system/service-management.txt')
-rw-r--r--docs/wiki/system/service-management.txt39
1 files changed, 39 insertions, 0 deletions
diff --git a/docs/wiki/system/service-management.txt b/docs/wiki/system/service-management.txt
new file mode 100644
index 0000000..fc49f60
--- /dev/null
+++ b/docs/wiki/system/service-management.txt
@@ -0,0 +1,39 @@
+
+Service Management
+==================
+
+Carbs Linux uses busybox-runit as the default system supervisor.
+
+
+Enabling Services
+-----------------
+
+Services start immediately when you enable them, and run by default on boot.
+
+
+ $ ln -s /etc/sv/acpid /var/service
+
+
+Disabling a service
+-------------------
+
+ $ unlink /var/service/acpid
+
+
+Starting a service
+------------------
+
+ $ sv start acpid
+
+
+Stopping a service
+------------------
+
+ $ sv stop acpid
+
+
+More
+----
+
+Runit is extremely flexible and simple. Refer to `sv`, `runsv`, `svc`, `runsvdir`
+help outputs for more information.