README 1.1 KB

123456789101112131415161718192021222324252627
  1. You are looking for the traditional init scripts in /etc/init.d,
  2. and they are gone?
  3. Here's an explanation on what's going on:
  4. You are running a systemd-based OS where traditional init scripts have
  5. been replaced by native systemd services files. Service files provide
  6. very similar functionality to init scripts. To make use of service
  7. files simply invoke "systemctl", which will output a list of all
  8. currently running services (and other units). Use "systemctl
  9. list-unit-files" to get a listing of all known unit files, including
  10. stopped, disabled and masked ones. Use "systemctl start
  11. foobar.service" and "systemctl stop foobar.service" to start or stop a
  12. service, respectively. For further details, please refer to
  13. systemctl(1).
  14. Note that traditional init scripts continue to function on a systemd
  15. system. An init script /etc/init.d/foobar is implicitly mapped
  16. into a service unit foobar.service during system initialization.
  17. Thank you!
  18. Further reading:
  19. man:systemctl(1)
  20. man:systemd(1)
  21. http://0pointer.de/blog/projects/systemd-for-admins-3.html
  22. http://www.freedesktop.org/wiki/Software/systemd/Incompatibilities