Bird
0
0

You run umount /mnt/backup but get the error "target is busy". What is the most likely cause?

medium📝 Debug Q6 of 15
Linux CLI - Disk and Storage
You run umount /mnt/backup but get the error "target is busy". What is the most likely cause?
AThe directory /mnt/backup does not exist
BYou typed umount incorrectly
CSome process is using files on /mnt/backup
DThe device is not mounted
Step-by-Step Solution
Solution:
  1. Step 1: Understand 'target is busy' error

    This error means the mount point is in use by some process or open file.
  2. Step 2: Identify cause

    Processes accessing files or directories on the mount prevent unmounting until they release them.
  3. Final Answer:

    Some process is using files on /mnt/backup -> Option C
  4. Quick Check:

    Busy target = active process using mount [OK]
Quick Trick: Use lsof or fuser to find processes blocking umount [OK]
Common Mistakes:
  • Assuming directory doesn't exist
  • Thinking umount command is wrong
  • Believing device is not mounted

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Linux CLI Quizzes