解決:rm: 無法刪除"tomcat": 裝置或資源忙,linux下資料夾不能刪除

shishi_m037192554發表於2018-11-30

解決:rm: 無法刪除"tomcat": 裝置或資源忙

    <!-- 作者區域 -->
    <div class="author">
      <a class="avatar" href="/u/0040655e757b">
        <img src="//upload.jianshu.io/users/upload_avatars/1534169/b01cf423-936b-4ec0-814f-06d16ede48dc.JPG?imageMogr2/auto-orient/strip|imageView2/1/w/96/h/96" alt="96">


一直小魚





2017.07.11 10:23*
字數 63
閱讀 788評論 0



    <!-- 文章內容 -->
    <div data-note-content="" class="show-content">
      <div class="show-content-free">
        <blockquote>

今天,在linux伺服器刪除tomcat的時候,提示:無法刪除、裝置或資源忙

問題

解決:rm: 無法刪除"tomcat": 裝置或資源忙,linux下資料夾不能刪除
image.png

解決辦法

$  fuser -m tomcat/
$  fuser -k tomcat/
$  umount tomcat/
$  rm -rf tomcat/

解決方法截圖(1):

解決:rm: 無法刪除"tomcat": 裝置或資源忙,linux下資料夾不能刪除
image.png

解決方法截圖(2):

解決:rm: 無法刪除"tomcat": 裝置或資源忙,linux下資料夾不能刪除
image.png

關於 fuserumount命令,請自行google

      </div>
    </div>
</div>

相關文章