From 979a10c2a68746565f330e871da2a0a112fa1604 Mon Sep 17 00:00:00 2001 From: Cem Keylan Date: Mon, 6 Apr 2020 12:06:20 +0300 Subject: initial commit --- docs/wiki/system/service-management.html | 53 ++++++++++++++++++++++++++++++++ docs/wiki/system/service-management.txt | 39 +++++++++++++++++++++++ 2 files changed, 92 insertions(+) create mode 100644 docs/wiki/system/service-management.html create mode 100644 docs/wiki/system/service-management.txt (limited to 'docs/wiki/system') diff --git a/docs/wiki/system/service-management.html b/docs/wiki/system/service-management.html new file mode 100644 index 0000000..40d9c54 --- /dev/null +++ b/docs/wiki/system/service-management.html @@ -0,0 +1,53 @@ + + + +Service Management | Carbs Linux + + + + + +

Carbs Linux - a simple busybox linux distribution

+
+

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.

+View Page Source
+ + + + 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. -- cgit v1.2.3