zoukankan      html  css  js  c++  java
  • umount -fl用法

    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.
    
    
  • 相关阅读:
    Webpack打包原理
    Vue——VNode
    Vue——响应式原理
    HTTP2.0——头部压缩
    HTTP2.0
    浏览器打开2个页面会有几个进程?
    计算机网络——TCP如何保证可靠性
    操作系统——进程之间的通信
    前端路由hash与history下
    前端路由hash与history上
  • 原文地址:https://www.cnblogs.com/xingmuxin/p/8446178.html
Copyright © 2011-2022 走看看