Final answer:
option true. Yes, the 'useradd' command typically copies configuration files from '/etc/skel' to a new user's home directory. This process provides a default setup for new users.
Step-by-step explanation:
The statement that useradd copies a set of user configuration files from /etc/skel when creating a new user account is typically true. The /etc/skel directory contains default configuration files that are used to populate the home directory of a new user. This process ensures that every new user has an initial setup that includes files and settings like the shell configuration, and possibly some application configuration files, depending on what is found in the /etc/skel directory.
True. In Unix and Linux systems, the `useradd` command is used to create new user accounts. When `useradd` is used, it typically copies a set of user configuration files from the /etc/skel directory to the new user's home directory. The /etc/skel directory contains a template (skeleton) for new user home directories, including default configuration files like .bashrc, .bash_profile, and others. This ensures that the new user starts with a set of default configurations and environment settings, providing a consistent and functional user environment for the newly created account.