mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-03-28 21:16:20 +01:00
systemctl: add Arabic translation (#15618)
This commit is contained in:
parent
a390d412cf
commit
e4787ebb39
1 changed files with 36 additions and 0 deletions
36
pages.ar/linux/systemctl.md
Normal file
36
pages.ar/linux/systemctl.md
Normal file
|
@ -0,0 +1,36 @@
|
|||
# systemctl
|
||||
|
||||
> التحكم في مدير نظام systemd والخدمات.
|
||||
> لمزيد من التفاصيل: <https://www.freedesktop.org/software/systemd/man/systemctl.html>.
|
||||
|
||||
- عرض جميع الخدمات قيد التشغيل:
|
||||
|
||||
`systemctl status`
|
||||
|
||||
- عرض الوحدات الفاشلة:
|
||||
|
||||
`systemctl --failed`
|
||||
|
||||
- بدء/إيقاف/إعادة تشغيل/إعادة تحميل/عرض حالة خدمة:
|
||||
|
||||
`systemctl {{start|stop|restart|reload|status}} {{unit}}`
|
||||
|
||||
- تمكين/تعطيل وحدة ليتم تشغيلها عند بدء تشغيل النظام:
|
||||
|
||||
`systemctl {{enable|disable}} {{unit}}`
|
||||
|
||||
- إعادة تحميل systemd والبحث عن وحدات جديدة أو متغيرة:
|
||||
|
||||
`systemctl daemon-reload`
|
||||
|
||||
- التحقق مما إذا كانت الوحدة نشطة/مُمكّنة/فاشلة:
|
||||
|
||||
`systemctl {{is-active|is-enabled|is-failed}} {{unit}}`
|
||||
|
||||
- عرض جميع وحدات الخدمة/المقبس/التركيب التلقائي مع التصفية حسب الحالة (قيد التشغيل/فاشلة):
|
||||
|
||||
`systemctl list-units --type={{service|socket|automount}} --state={{failed|running}}`
|
||||
|
||||
- عرض محتويات ومسار ملف الوحدة:
|
||||
|
||||
`systemctl cat {{unit}}`
|
Loading…
Add table
Reference in a new issue