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

原文地址:https://www.cnblogs.com/jmaly/p/7269042.html