Difficulty: Easy
Correct Answer: wall
Explanation:
Introduction / Context:System administrators often need to alert every active user about impending maintenance, shutdowns, or policy changes. Unix-like systems provide terminal-messaging utilities that can target one user, a group, or everyone with an interactive session.
Given Data / Assumptions:
Concept / Approach:The wall (write all) command sends a message to all logged-in users by writing to their terminals. By contrast, write targets a single user (for example, write alice), mail delivers e-mail and is not instantaneous, and mesg controls whether a user's terminal can receive messages (mesg y/n). For urgent broadcast communication, wall is the canonical choice.
Step-by-Step Solution:
Compose a message and broadcast: echo "System maintenance in 5 minutes" | sudo wallVerify delivery: check multiple terminals for the broadcast banner.If some users do not receive it, confirm mesg settings and terminal availability.Follow up via mail if a persistent record is needed.Verification / Alternative check:Run who or w to list logged-in users and their TTYs. After sending with wall, observe that all TTYs display the same message, confirming system-wide broadcast.
Why Other Options Are Wrong:
Common Pitfalls:Assuming wall overrides a user's mesg n setting or forgetting sudo/root may be required to reach all terminals on some systems.
Final Answer:wall
Discussion & Comments