Question 382 of 527
LPIC-1 GNU and Unix Commands Practice Question
Exhibit
$ cat /etc/fstab /dev/sda1 /boot ext4 defaults 0 2 /dev/sda2 / ext4 defaults 0 1 /dev/sda3 none swap sw 0 0 /dev/sdb1 /data ext4 defaults 0 2 $ mount -o remount /data mount: /data: mount point not mounted or bad option.
Refer to the exhibit. The remount command fails. What is the most likely cause?
⚠ Common exam trap
The trap is that candidates may focus on the missing 'noauto' option and think it is the cause of the failure. In reality, the remount command requires the filesystem to be already mounted; the 'noauto' option is irrelevant to the remount operation's success.
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 filesystem is not mounted.
The remount command fails because the filesystem is not mounted. 'mount -o remount' only works on filesystems that are already mounted. The lack of the 'noauto' option in the fstab entry is irrelevant; it only affects automatic mounting at boot and does not influence whether a remount can be performed on an unmounted filesystem. Candidates may incorrectly believe that the missing 'noauto' is the cause, but the real issue is that the filesystem needs to be mounted first.
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 filesystem type is wrong.
Why it's wrong here
ext4 is correct.
- ✗
The fstab entry lacks the 'noauto' option but the device is not currently mounted.
Why it's wrong here
The lack of the 'noauto' option in the fstab entry is not the cause; it only affects automatic mounting at boot and does not impact the remount command.
- ✓
The filesystem is not mounted.
Why this is correct
The filesystem is not mounted, and 'mount -o remount' requires the filesystem to be already mounted. This is the most likely cause of the failure.
- ✗
The mount point /data does not exist.
Why it's wrong here
Would give a different error.
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 →
Last reviewed: Jul 4, 2026
This LPIC-1 practice question is part of Courseiva's free LPI 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 LPIC-1 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.