During booting, when the Linux kernel loads an initramfs file, which command from the initramfs will be executed first, if present?



A. /init
B. /initrd
C. /linuxrc
D. /rc.local
E. /sbin/init

題解

當Linux核心載入完成後,會用以下的優先順序來尋找並執行使用者行程。

  • /sbin/init
  • /etc/init
  • /bin/init
  • /bin/sh

所以答案是選項「E」。