Difficulty: Easy
Correct Answer: mkkickstart
Explanation:
Introduction / Context:
Enterprise environments often require installing the same Linux configuration across many machines. Red Hat–style distributions support Kickstart, which automates installation using an answer file (ks.cfg). Utilities exist to help create this file for repeatable deployments on identical or similar hardware.
Given Data / Assumptions:
Concept / Approach:
Kickstart installations rely on a configuration file specifying language, keyboard, partitioning, packages, and post-install scripts. Tools such as mkkickstart (and later system-config-kickstart) help generate the ks.cfg file. The installer then consumes this file over the network, local media, or via HTTP to drive a hands-free installation.
Step-by-Step Solution:
Verification / Alternative check:
Validate by performing a test install on one machine, ensuring identical outcomes on subsequent systems. Logs and Anaconda output confirm the Kickstart file was parsed and applied.
Why Other Options Are Wrong:
Common Pitfalls:
Confusing imaging (bit-for-bit clones) with scripted installs, forgetting to match driver and storage settings for target hardware, and omitting post-install configuration tasks in the Kickstart file.
Final Answer:
mkkickstart
Discussion & Comments