1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 21:22:09 +02:00
tldr/pages.hi/linux/systemctl.md
K.B.Dharun Krishna 5c26174aa9
pages/*: update links and more info link script (#11390)
* pages/*: update links and more info link script

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

* cleanup: reformat code

* ax-webapp: fix link

* curl: fix false positive

Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>

---------

Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
2023-11-06 23:14:12 +05:30

36 lines
1.5 KiB
Markdown

# 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 {{इकाई}}`