赞
踩
:
umount: /mnt/test:目标忙。
解决办法:按照下面的办法进行修改
[root@localhost /]# umount /mnt/test/ umount: /mnt/test:目标忙。 (有些情况下通过 lsof(8) 或 fuser(1) 可以 找到有关使用该设备的进程的有用信息) [root@localhost /]# lsof lsof: WARNING: can't stat() fuse.gvfsd-fuse file system /run/user/1001/gvfs Output information may be incomplete. ^C 您在 /var/spool/mail/root 中有邮件 [root@localhost /]# fuser -mv /mnt/test/ 用户 进程号 权限 命令 /mnt/test: root kernel mount /mnt/test root 105548 ..c.. bash [root@localhost /]# kill -9 105548 您在 /var/spool/mail/root 中有邮件 [root@localhost /]# ^C [root@localhost /]# fuser -mv /mnt/test/ 用户 进程号 权限 命令 /mnt/test: root kernel mount /mnt/test 您在 /var/spool/mail/root 中有邮件 [root@localhost /]# umount /mnt/test/
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。