美文网首页
Docker中删除目录报错Device or resource

Docker中删除目录报错Device or resource

作者: droid_zf | 来源:发表于2018-10-09 13:37 被阅读46次
    rm -r /mypath
    rm: cannot remove '/mypath': Device or resource busy
    

    直接在容器umount会报umount: /mypath: must be superuser to unmount
    需要赋予权限、可访问设备

    docker run --name myubuntu --privileged  -t -i -v /Users/my/docker:/mypath ubuntu:16.04 /bin/bash
    umount /mypath
    

    相关文章

      网友评论

          本文标题:Docker中删除目录报错Device or resource

          本文链接:https://www.haomeiwen.com/subject/ehreaftx.html