Error:
When trying to umount the cifs windows shared mount point getting below error even after killing using fuser output.
1 2 3 4 5 | umount /tmp umount lsof: WARNING: can't stat() cifs file system /mnt Output information may be incomplete. lsof: status error on /mnt: No such device |
Soluiton:
Use force un mount.
1 | umount -f -a -t cifs -l /mnt/ |
0 条评论