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/25 18:52] doc |
install:guides:linux [2026/07/25 14:23] (current) doc |
||
|---|---|---|---|
| Line 96: | Line 96: | ||
| If your repository is set to [omnidex-arch] as described above, you can view all available versions and install a particular version using the commands: | If your repository is set to [omnidex-arch] as described above, you can view all available versions and install a particular version using the commands: | ||
| - | # zypper list --showduplicates omnidex | + | # zypper packages omnidex |
| - | # zypper install omnidex-<version> (eg. yum install omnidex-5.3-08D.el6.linux) | + | # zypper install omnidex-<version> (eg. zypper install omnidex-5.3-08D.el6.linux) |
| Note: To install an earlier version of Omnidex than the version currently installed, first remove Omnidex and then clear the yum cache. | Note: To install an earlier version of Omnidex than the version currently installed, first remove Omnidex and then clear the yum cache. | ||
| # zypper remove omnidex | # zypper remove omnidex | ||
| - | # zypper clean metadata | + | # zypper clean |
| === Manual installation === | === Manual installation === | ||
| 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> | ||