Difficulty: Easy
Correct Answer: /etc/skel
Explanation:
Introduction / Context:
When a new user is created, many distributions copy a set of default files (such as shell startup files) into the user's home directory. These defaults define the initial environment and can be customized by administrators to enforce organizational standards.
Given Data / Assumptions:
Concept / Approach:
The /etc/skel directory holds skeleton files. When creating users with useradd -m or adduser, contents of /etc/skel are copied into the new home directory. Administrators can add common configuration files or directories here to standardize new accounts.
Step-by-Step Solution:
Verification / Alternative check:
See /etc/default/useradd or distro docs for useradd's default SKEL path. On Debian-family, adduser uses /etc/skel by default as well.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
/etc/skel.
Discussion & Comments