Question 318 of 507
LPIC-2 Linux Kernel and System Startup Practice Question
A server with multiple network cards needs a specific kernel module loaded before network configuration. Where should loading be configured for early boot?
⚠ Common exam trap
It's easy for candidates to confuse /etc/modprobe.d/ (for module parameters and aliases) with /etc/modules-load.d/ (for specifying modules to load at boot), leading them to choose the wrong directory for early module loading.
Answer choices
Why each option matters
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
✓
/etc/modules-load.d/
Systemd-based systems use /etc/modules-load.d/ to specify kernel modules that must be loaded early in the boot process, before network configuration. Files in this directory are processed by systemd-modules-load.service, which runs before network services, ensuring the module is available when interfaces are brought up.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✗
/boot/grub/grub.cfg
Why it's wrong here
GRUB configuration is for boot parameters, not module loading.
- ✗
/etc/modprobe.d/
Why it's wrong here
This directory is for module options, not automatic loading.
- ✗
/etc/sysconfig/modules/
Why it's wrong here
This is used by some older distributions but not the standard.
- ✓
/etc/modules-load.d/
Why this is correct
Files in /etc/modules-load.d/ list modules to be loaded at boot by systemd.
About these practice questions
Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →
Last reviewed: Jun 25, 2026
This LPIC-2 practice question is part of Courseiva's free LPI certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the LPIC-2 exam.
Question Discussion
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
Sign in to join the discussion.