今天,在linux服务器删除tomcat的时候,提示:无法删除、设备或资源忙
问题
image.png
解决办法
$ fuser -m tomcat/
$ fuser -k tomcat/
$ umount tomcat/
$ rm -rf tomcat/
解决方法截图(1):
image.png
解决方法截图(2):
image.png
关于 fuser
和umount
命令,请自行google
今天,在linux服务器删除tomcat的时候,提示:无法删除、设备或资源忙
$ fuser -m tomcat/
$ fuser -k tomcat/
$ umount tomcat/
$ rm -rf tomcat/
解决方法截图(1):
解决方法截图(2):
关于 fuser
和umount
命令,请自行google