Mount挂载/data时出现mount: /data is busy 如何解决?

Posted martin1317

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mount挂载/data时出现mount: /data is busy 如何解决?相关的知识,希望对你有一定的参考价值。

1、df -h查看下挂载点/data是否正在使用,有时候会存在挂载了,但df -h不会显示出来,这时候 grep “/data” /proc/mounts 来进行查看

2、当确认挂载点/data正在使用后,使用 umount /data 卸载,如果卸载失败就使用强制卸载 umount -lf /data  (还可以使用fuser -km /data卸载)

3、最后mount新的设备即可

参考地址:http://lidao.blog.51cto.com/3388056/1914205

以上是关于Mount挂载/data时出现mount: /data is busy 如何解决?的主要内容,如果未能解决你的问题,请参考以下文章