问题:
#umount /dev/sda1
umount: /mnt/usb: device is busy
查找占用目录进程:
#lsof |grep /mnt/usb
bash 1971 root cwd DIR 8,1 16384 1 /mnt/usb/
bash 2342 root 3r DIR 8,1 16384 1 /mnt/usb/
杀掉进程:
#kill -9 1971
#kill -9 2342
卸载:
#umount /mnt/usb
时间: 2024-10-07 16:37:12