After running the command umount /mnt, the following error message is displayed:



umount: /mnt: device is busy.

What is a common reason for this message?

A. The kernel has not finished flushing disk writes to the mounted device.
B. A user has a file open in the /mnt directory.
C. Another file system still contains a symlink to a file inside /mnt.
D. The files in /mnt have been scanned and added to the locate database.
E. The kernel thinks that a process is about to open a file in /mnt for reading.

題解

在卸載檔案系統時,出現「device is busy」訊息,通常是因為檔案系統中的檔案正在被使用中。所以答案是選項B。