- A
The process is already being traced by another strace instance.
Why wrong: Only one tracer can attach at a time, but that would produce an error, not no output.
- B
The administrator does not have permission to trace that process.
Non-root users need CAP_SYS_PTRACE or same UID. If not, strace attaches but gets no events, or fails silently depending on configuration.
- C
The process is a kernel thread.
Why wrong: strace can trace kernel threads? Actually, strace traces system calls of user-space processes; kernel threads are not user-space processes and cannot be traced via strace. However, the most common reason for no output is permissions.
- D
The process is a zombie process.
Why wrong: Zombie processes are dead and cannot be traced.
Quick Answer
The answer is that the administrator lacks permission to trace the process. This occurs because strace relies on the ptrace system call, which by default restricts tracing to either the root user or a process owned by the same user ID, and the target process must not have its dumpable attribute set to zero via prctl(PR_SET_DUMPABLE, 0). When these conditions are not met, strace produces no output or a silent failure, often masking the underlying permission issue. On the CompTIA Linux+ XK0-005 exam, this scenario tests your understanding of Linux security controls around process tracing, a common trap where candidates assume a tool error rather than a permissions problem. A useful memory tip: think of “ptrace” as “permission to trace”—if you don’t have it, strace stays silent.
XK0-005 Troubleshooting Practice Question
This XK0-005 practice question tests your understanding of troubleshooting. The scenario asks you to isolate a root cause — eliminate options that address a different problem before choosing. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.
A system administrator is investigating why a particular process is not responding. They run strace on the process but get no output. What could be the most likely reason?
Clue words in this question
Noticing these words before you look at the options changes how you read each choice.
Clue:
"most likely"Why it matters: Probability qualifier — the question wants the most probable cause or outcome, not a guaranteed one. Eliminate low-probability options.
Answer choices
Why each option matters
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
The administrator does not have permission to trace that process.
The most likely reason strace produces no output is that the administrator lacks the necessary permissions to trace the process. By default, strace uses the ptrace system call, which requires either root privileges or the same user ID as the target process, and the process must not have the `dumpable` attribute set to 0 (e.g., via prctl(PR_SET_DUMPABLE, 0)). Without proper permissions, strace fails silently or returns an error like 'Operation not permitted' depending on the output configuration.
Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✗
The process is already being traced by another strace instance.
Why it's wrong here
Only one tracer can attach at a time, but that would produce an error, not no output.
- ✓
The administrator does not have permission to trace that process.
Why this is correct
Non-root users need CAP_SYS_PTRACE or same UID. If not, strace attaches but gets no events, or fails silently depending on configuration.
Clue confirmation
The clue word "most likely" in the question point toward this answer.
Related concept
Read the scenario before looking for a memorised answer.
- ✗
The process is a kernel thread.
Why it's wrong here
strace can trace kernel threads? Actually, strace traces system calls of user-space processes; kernel threads are not user-space processes and cannot be traced via strace. However, the most common reason for no output is permissions.
- ✗
The process is a zombie process.
Why it's wrong here
Zombie processes are dead and cannot be traced.
Common exam traps
Common exam trap: answer the scenario, not the keyword
CompTIA often tests the misconception that strace always produces output or that permission issues result in a clear error message, when in fact strace may produce no output if stderr is not captured or if the process is non-dumpable.
Trap categories for this question
Command / output trap
Only one tracer can attach at a time, but that would produce an error, not no output.
Detailed technical explanation
How to think about this question
The ptrace system call is the foundation for strace and debuggers; it requires either CAP_SYS_PTRACE capability or that the tracer and target share the same UID and the target is not setuid/setgid or non-dumpable. In real-world scenarios, security hardening (e.g., Yama LSM with ptrace_scope=1) can restrict ptrace to parent processes only, causing strace to fail silently if the administrator is not the parent or root.
KKey Concepts to Remember
- Read the scenario before looking for a memorised answer.
- Find the constraint that changes the correct option.
- Eliminate answers that are true in general but not in this case.
TExam Day Tips
- Watch for words such as best, first, most likely and least administrative effort.
- Review why wrong options are wrong, not only why the correct option is correct.
Key takeaway
Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Real-world example
How this comes up in practice
A security administrator must allow nursing staff to reach a patient records server while blocking access from the guest Wi-Fi VLAN. After applying an extended ACL, traffic is still blocked from nursing workstations. The ACL was applied outbound instead of inbound on the wrong interface. Questions like this test ACL direction and placement rules.
What to study next
Got this wrong? Here's your next step.
Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.
- →
Troubleshooting — study guide chapter
Learn the concepts, then practise the questions
- →
Troubleshooting practice questions
Targeted practice on this topic area only
- →
All XK0-005 questions
510 questions across all exam domains
- →
CompTIA Linux+ XK0-005 study guide
Full concept coverage aligned to exam objectives
- →
XK0-005 practice test guide
How to use practice tests most effectively before exam day
Related practice questions
Related XK0-005 practice-question pages
Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.
Security practice questions
Practise XK0-005 questions linked to Security.
Troubleshooting practice questions
Practise XK0-005 questions linked to Troubleshooting.
Scripting, Containers and Automation practice questions
Practise XK0-005 questions linked to Scripting, Containers and Automation.
System Management practice questions
Practise XK0-005 questions linked to System Management.
XK0-005 fundamentals practice questions
Practise XK0-005 questions linked to XK0-005 fundamentals.
XK0-005 scenario practice questions
Practise XK0-005 questions linked to XK0-005 scenario.
XK0-005 troubleshooting practice questions
Practise XK0-005 questions linked to XK0-005 troubleshooting.
Practice this exam
Start a free XK0-005 practice session
Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.
FAQ
Questions learners often ask
What does this XK0-005 question test?
Troubleshooting — This question tests Troubleshooting — Read the scenario before looking for a memorised answer..
What is the correct answer to this question?
The correct answer is: The administrator does not have permission to trace that process. — The most likely reason strace produces no output is that the administrator lacks the necessary permissions to trace the process. By default, strace uses the ptrace system call, which requires either root privileges or the same user ID as the target process, and the process must not have the `dumpable` attribute set to 0 (e.g., via prctl(PR_SET_DUMPABLE, 0)). Without proper permissions, strace fails silently or returns an error like 'Operation not permitted' depending on the output configuration.
What should I do if I get this XK0-005 question wrong?
Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.
Are there clue words in this question I should notice?
Yes — watch for: "most likely". Probability qualifier — the question wants the most probable cause or outcome, not a guaranteed one. Eliminate low-probability options.
What is the key concept behind this question?
Read the scenario before looking for a memorised answer.
About these practice questions
Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →
Keep practising
More XK0-005 practice questions
- Drag and drop the steps to mount a new filesystem in the correct order.
- Drag and drop the steps to troubleshoot a network connectivity issue using common commands in the correct order.
- Drag and drop the steps to create and apply a systemd service unit in the correct order.
- Drag and drop the steps to set up a cron job that runs a script daily in the correct order.
- Drag and drop the steps to recover a forgotten root password in single-user mode in the correct order.
- Drag and drop the steps to configure SELinux to allow a custom web application to listen on port 8080 in the correct ord…
Last reviewed: Jun 30, 2026
This XK0-005 practice question is part of Courseiva's free CompTIA certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the XK0-005 exam.
Question Discussion
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
Sign in to join the discussion.