Multiple choice technology operating systems

You are done using your external memory disk (say-KINSTON Pen disk) in Linux and you want to unmount it. But you get an error message like "umount: /media/KINGSTON: device is busy". Which of the following you can use to UNMOUNT IT SAFELY.

  1. Find the process that is using the drive and kill it safely.

  2. option a is correct and the following needs to be done to implement it: fuser /media/KINGSTON;fuser -k /media/KINGSTON; umount /media/KINGSTON

  3. Option a is incorrect and unsafe and you need to hard boot to solve this problem.

  4. Use a force option on unmount to acheive this : umount -F /media/KINSGTON

  5. a and b are correct.

Reveal answer Fill a bubble to check yourself
E Correct answer
Explanation

When a device is busy, you must find and terminate the processes accessing it. Option a describes this strategy, and option b provides the concrete implementation using fuser to identify and kill (-k) those processes before unmounting. Thus, both a and b are correct.