Difficulty: Easy
Correct Answer: lprm
Explanation:
Introduction / Context:
Traditional Unix printing follows the BSD model, where different commands handle job submission, monitoring, and removal. Knowing which tool removes jobs from the queue is essential for administrators and users managing print workloads.
Given Data / Assumptions:
Concept / Approach:
The lprm command removes print jobs. By default, lprm with no arguments deletes the current user's jobs. Specific job IDs can also be provided. Administrators can remove jobs submitted by other users if permissions allow.
Step-by-Step Solution:
Verification / Alternative check:
Cross-check with CUPS logs (/var/log/cups/) and web UI if CUPS provides BSD-compatible lpr/lprm interfaces.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
lprm.
Discussion & Comments