From 5f33165bdf18eb3481376f1067d9c405eb016534 Mon Sep 17 00:00:00 2001 From: ann0see <20726856+ann0see@users.noreply.github.com> Date: Sat, 14 Oct 2023 23:01:50 +0200 Subject: [PATCH 1/2] Change jamulus-server to jamulus-headless --- wiki/en/Running-a-Server.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/wiki/en/Running-a-Server.md b/wiki/en/Running-a-Server.md index c4f6e8bdb..157b88db7 100644 --- a/wiki/en/Running-a-Server.md +++ b/wiki/en/Running-a-Server.md @@ -274,7 +274,7 @@ To turn recording on or off (depending on the current state): [Service] Type=oneshot - ExecStart=/bin/systemctl kill -s SIGUSR2 Jamulus-Server + ExecStart=/bin/systemctl kill -s SIGUSR2 jamulus-headless ~~~ To start a new recording: @@ -286,10 +286,10 @@ To start a new recording: [Service] Type=oneshot - ExecStart=/bin/systemctl kill -s SIGUSR1 Jamulus-Server + ExecStart=/bin/systemctl kill -s SIGUSR1 jamulus-headless ~~~ -_Note: The Jamulus service name in the `ExecStart` line needs to be the same as the `.service` file name you created when setting systemd to control your Jamulus Server. So in this example it would be `Jamulus-Server.service`_ +_Note: The Jamulus service name in the `ExecStart` line needs to be the same as the `.service` file name which is used by systemd to control your Jamulus Server. By default, if you use the `.deb` files from the repository, it is `jamulus-headless`, as in this example. Run `sudo systemctl daemon-reload` to register them for first use. @@ -297,7 +297,7 @@ Now you can run these with the `systemctl` command, for example: `sudo systemctl start jamulusTogglerec` -You can see the result of these commands if you run `systemctl status jamulus`, or by viewing the logs. +You can see the result of these commands if you run `systemctl status jamulus-headless` (or the respective service name you specified manually). You can also view your (sys)log. --- From 2dfca1ce6f23b5302d08a7a0ce1b80e26e1d6a58 Mon Sep 17 00:00:00 2001 From: ann0see <20726856+ann0see@users.noreply.github.com> Date: Sun, 15 Oct 2023 09:19:34 +0200 Subject: [PATCH 2/2] Fix grammar Co-authored-by: John Dempsey <1750243+mcfnord@users.noreply.github.com> --- wiki/en/Running-a-Server.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wiki/en/Running-a-Server.md b/wiki/en/Running-a-Server.md index 157b88db7..817ff66e0 100644 --- a/wiki/en/Running-a-Server.md +++ b/wiki/en/Running-a-Server.md @@ -289,7 +289,7 @@ To start a new recording: ExecStart=/bin/systemctl kill -s SIGUSR1 jamulus-headless ~~~ -_Note: The Jamulus service name in the `ExecStart` line needs to be the same as the `.service` file name which is used by systemd to control your Jamulus Server. By default, if you use the `.deb` files from the repository, it is `jamulus-headless`, as in this example. +_Note: The Jamulus service name in the `ExecStart` line needs to be the same as the `.service` file name used by systemd to control your Jamulus Server. By default, if you use the `.deb` files from the repository, it is `jamulus-headless`, as in this example. Run `sudo systemctl daemon-reload` to register them for first use.