Community Tutorials Arch / Manjaro كيفية إعداد systemd-boot على Arch Linux
كيفية إعداد systemd-boot على Arch Linux
ARCH / MANJARO

كيفية إعداد systemd-boot على Arch Linux

SKYLINE Knowledge Base
Photo by Goran Ivos on Unsplash

دليل عملي خطوة بخطوة لـ كيفية إعداد systemd-boot على Arch Linux. أوامر مختبرة في الإنتاج، متطلبات مسبقة، تحقق نهائي وروابط لمواضيع ذات صلة.

systemd-boot هو الـ bootloader الخفيف المُجمَّع مع systemd. على Arch + UEFI يحل محل GRUB بحوالي 10 أسطر تكوين.

المتطلبات المسبقة

  • نظام Arch UEFI.
  • قسم EFI System Partition عند /boot أو /efi.

الخطوة 1: تأكيد UEFI

ls /sys/firmware/efi/efivars
bootctl status

الخطوة 2: تثبيت الـ bootloader

sudo bootctl install

الخطوة 3: تكوين الـ loader

/boot/loader/loader.conf:

default arch.conf
timeout 3
console-mode max
editor no

editor no مهم — بدونه يمكن لأي مستخدم محلي تعديل cmdline.

الخطوة 4: إدخالات الإقلاع

/boot/loader/entries/arch.conf:

title    Arch Linux
linux    /vmlinuz-linux
initrd   /intel-ucode.img
initrd   /initramfs-linux.img
options  root=UUID=AAAAAAAA-BBBB-CCCC-DDDD-EEEEEEEEEEEE rw quiet
blkid /dev/nvme0n1p2
lsblk -f

الخطوة 5: تحديث تلقائي

sudo mkdir -p /etc/pacman.d/hooks
sudo tee /etc/pacman.d/hooks/95-systemd-boot.hook <<'EOF'
[Trigger]
Type = Package
Operation = Upgrade
Target = systemd

[Action]
Description = Updating systemd-boot
When = PostTransaction
Exec = /usr/bin/bootctl update
EOF

الخطوة 6: التحقق من قائمة الإقلاع

sudo bootctl list
sudo bootctl status

التحقق

bootctl status | head -30
ls /boot/loader/entries/

الخاتمة

systemd-boot هو الخيار الصحيح على أي مضيف Arch UEFI لا تحتاج فيه ميزات GRUB.

الخطوات التالية

SKYLINE Engineering

@skyline

The engineering team at SKYLINE Industrial Solutions. We publish field-tested guides drawn from real KSA and GCC deployments.

See author profile
SKYLINE engineering services

Need this implemented for you?

Reading is free — building it right takes a team. SKYLINE engineers ship Arch / Manjaro for Aramco vendors, banks, hospitals and government agencies across Saudi Arabia. Talk to us before you start.

Aramco Approved Contractor ISO 9001 · ISO 27001 SAMA CSF aligned NCA ECC ready 247+ KSA clients

Comments

0 total · 0 threads
Be the first to leave a comment.