XK0-005 · Question #1087
XK0-005 Question #1087: Real Exam Question with Answer & Explanation
The correct answer is B: mkdir -p /mnt/test. {"question_number": 6, "question": "The mount -a command fails with 'mount point /mnt/test does not exist'. What should the administrator do next?", "correct_answer": "B. mkdir -p /mnt/test", "explanation": "The error explicitly states the mount point directory does not exist. mk
Question
A user attempts to use the mount -a command but gets the following error: mount: mount point /mnt/test does not exist Which of the following commands best describes the action the Linux administrator should take NEXT?
Options
- Amount -a /mnt/test
- Bmkdir -p /mnt/test
- Dmkfs /mnt/test
- Etouch /mnt/test
Explanation
{"question_number": 6, "question": "The mount -a command fails with 'mount point /mnt/test does not exist'. What should the administrator do next?", "correct_answer": "B. mkdir -p /mnt/test", "explanation": "The error explicitly states the mount point directory does not exist. mkdir -p /mnt/test creates the directory (and any missing parent directories). A mount point must be an existing directory before a filesystem can be mounted to it. Running mount -a again with a path argument is invalid syntax, mkfs formats a filesystem (destructive, not applicable here), and touch creates a file-not a directory-which cannot serve as a mount point.", "generated_by": "claude-sonnet", "llm_judge_score": 3}
Topics
Community Discussion
No community discussion yet for this question.