This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
|
install:guides:linux [2021/08/26 21:36] doc |
install:guides:linux [2026/07/25 14:23] (current) doc |
||
|---|---|---|---|
| Line 152: | Line 152: | ||
| === Install Omnidex to run as a service (optional) === | === Install Omnidex to run as a service (optional) === | ||
| - | Omnidex is usually run as a service, though it can be run in a console window as well. The files needed to set up Omnidex as a service are automatically placed in /etc/init.d upon installation. | + | Omnidex is usually run as a service, though it can be run in a console window as well. The files needed to set up Omnidex as a service are automatically placed in /etc/systemd/system upon installation. |
| The following commands are available to manage the Omnidex service: | The following commands are available to manage the Omnidex service: | ||
| <code> | <code> | ||
| - | systemctl start omnidexd (start omnidex as a service) | + | systemctl start omnidex (start omnidex as a service) |
| - | systemctl stop omnidexd (stop omnidex as a service) | + | systemctl stop omnidex (stop omnidex as a service) |
| - | systemctl restart omnidexd (restart omnidex as a service) | + | systemctl restart omnidex (restart omnidex as a service) |
| - | systemctl status omnidexd (check if omnidex is running as a service) | + | systemctl status omnidex (check if omnidex is running as a service) |
| </code> | </code> | ||
| Line 166: | Line 166: | ||
| <code> | <code> | ||
| - | chkconfig --add omnidexd (add omnidex service to startup) | + | systemctl enable omnidex (add omnidex service to startup) |
| - | chkconfig --del omnidexd (remove omnidex service from startup) | + | systemctl disable omnidex (remove omnidex service from startup) |
| - | chkconfig --list omnidexd (check if omnidex service is in the startup) | + | systemctl is-enabled omnidex (check if omnidex service is in the startup) |
| </code> | </code> | ||