Valid XK0-005 Dumps shared by EduDump.com for Helping Passing XK0-005 Exam! EduDump.com now offer the newest XK0-005 exam dumps, the EduDump.com XK0-005 exam questions have been updated and answers have been corrected get the newest EduDump.com XK0-005 dumps with Test Engine here:
A Linux administrator needs to remove a USB drive from a system. The unmount command fails, stating the device is busy. Which of the following commands will show the reason for this error?
Correct Answer: D
Kill the processes using the filesystem and then unmount it. use lsof The following command finds out the processes accessing the partition/filesystem. You need to run the following command as root. Here, we use the mount point /mnt/data as an example. # lsof | grep '/mnt/data' It will output lines like bash 17622 user1 cwd DIR 253,2 4096 2 /mnt/data If you are sure that it is safe to kill the process, you may kill them by kill or kill -9. After the processes are killed, the filesystem will be able to be unmounted.