1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-31 15:53:54 +02:00
tldr/pages.hi/linux/systemctl.md
K.B.Dharun Krishna 8538a31451
pages/*: add standard translation and links (#11331)
* pages/*: add standard translation and links

Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>

* fix1: false positives; standardize Bengali, Hindi, Nepali periods

* fix: periods in recently added Bengali pages

Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>

* fix: false positives in modified files

Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>

* cleanup: update to native period in Bengali l10n

Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>

---------

Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2023-11-06 14:02:31 +05:30

1.5 KiB

systemctl

systemd सिस्टम और सेवा प्रबंधक को नियंत्रित करें। अधिक जानकारी: https://www.freedesktop.org/software/systemd/man/systemctl.html

  • सभी चल रही सेवाएँ दिखाएं:

systemctl status

  • विफल इकाइयों की सूची:

systemctl --failed

  • सेवा को चालना/रोकना/पुनरारंभ करना/रीलोड करना:

systemctl {{start|stop|restart|reload}} {{इकाई}}

  • एक इकाई की स्थिति दिखाएं:

systemctl status {{इकाई}}

  • एक इकाई को बूटअप पर स्वचलित रूप से चालाने/रोकने के लिए सक्षम/अक्षम करें:

systemctl {{enable|disable}} {{इकाई}}

  • एक इकाई को सक्षम/अक्षम करने और मैन्युअल सक्रियण से रोकने/हटाने के लिए मास्क/अनमास्क करें:

systemctl {{mask|unmask}} {{इकाई}}

  • systemd को पुनः लोड करें, नई या बदली गई इकाइयों के लिए स्कैन करें:

systemctl daemon-reload

  • क्या किसी इकाई को सक्षम किया गया है, यह जाँचें:

systemctl is-enabled {{इकाई}}