首页 > 其他 > 详细

umount -fl用法

时间:2018-02-13 12:02:17      阅读:299      评论:0      收藏:0      [点我收藏+]

umount, 老是提示:device is busy, 服务又不能停止的。可以用"umount -fl"解决!

挂载:

mount - mount a filesystem

mount [optionsdevice dir

如:mount --bind /dev  /home/tmp/dev

解挂载:

umount - unmount a filesystem

umount [optionsdir

如:umount  /home/tmp/dev

Note that a file system cannot be unmounted when it is ‘busy‘ - for example, when there are open files on it, or when some process has its working directory there, or when a swap file on it is in use. The offending process could even be umount itself - it opens libc, and libc in its turn may open for example locale files. A lazy unmount avoids this problem。

       -f, --force
              Force an unmount (in case of an unreachable NFS system).

              Note that this option does not guarantee that umount command
              does not hang.  It‘s strongly recommended to use absolute
              paths without symlinks to avoid unwanted readlink and stat
              system calls on unreachable NFS in umount.
       -l, --lazy
              Lazy unmount.  Detach the filesystem from the file hierarchy
              now, and clean up all references to this filesystem as soon as
              it is not busy anymore.

umount -fl用法

原文:https://www.cnblogs.com/xingmuxin/p/8446178.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!