-
-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
systemctl: add Arabic translation (#15618)
- Loading branch information
1 parent
a390d41
commit e4787eb
Showing
1 changed file
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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}}` |