Page 1 of 1
sysvinit alternative to systemd
Posted: Mon Jun 20, 2022 1:50 pm
by kd4e
I need to do something similar to this - without systemd:
systemd --> systemctl start trunk-recorder.service
I'm thinking that this is the sysvinit version "service frobozz start" - based on this:
https://fedoraproject.org/wiki/SysVinit ... Cheatsheet
Is that correct, please?
David
Re: sysvinit alternative to systemd
Posted: Mon Jun 20, 2022 2:07 pm
by bigbenaugust
I don't have my MX machine in front of me at the moment, but I'm not sure MX implements the service command for managing init scripts for services.
In sysV-style init, everything is just a shell script, so
Code: Select all
systemctl start trunk-recorder.service
is more like
under the hood. That's all the service command does for distros that use it as a wrapper.
(This assumes whatever package set up trunk-recorder dropped an init script in the default location)
Re: sysvinit alternative to systemd
Posted: Mon Jun 20, 2022 2:23 pm
by Huckleberry Finn
Re: sysvinit alternative to systemd
Posted: Mon Jun 20, 2022 4:50 pm
by kd4e
Thanks!
As soon as I get the OS and files loaded on the just-set-up Dell server I'll give it a try and report back.