[20201103]lsof顯示link=0的檔案.txt
[20201103]lsof顯示link=0的檔案.txt
--//有時候一些檔案某些程式開啟了檔案控制程式碼,而使用rm刪除是無法回收使用空間的,如果出現這樣的情況,檢視這些依然開啟的檔案,
--//我以前的查詢方式使用grep過濾。
# lsof | egrep "COMMAND|deleted"
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
bash 8313 root txt REG 104,2 768952 10715145 /bin/bash (deleted)
bash 8351 root txt REG 104,2 768952 10715145 /bin/bash (deleted)
bash 8387 root txt REG 104,2 768952 10715145 /bin/bash (deleted)
rsyslogd 14220 root txt REG 104,2 267608 5603400 /sbin/rsyslogd (deleted)
--//實際上lsof支援顯示檔案link的計數:
+|-L [l] This option enables ('+') or disables ('-') the listing of file link counts, where they are available - e.g.,
they aren't available for sockets, or most FIFOs and pipes.
When +L is specified without a following number, all link counts will be listed. When -L is specified (the
default), no link counts will be listed.
When +L is followed by a number, only files having a link count less than that number will be listed. (No
number may follow -L.) A specification of the form ''+L1'' will select open files that have been unlinked. A
specification of the form ''+aL1 <file_system>'' will select unlinked open files on the specified file
system.
For other link count comparisons, use field output (-F) and a post-processing script or program.
--//+L numbner,僅僅顯示小於number的記錄。
# lsof +L 1
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NLINK NODE NAME
bash 8313 root txt REG 104,2 768952 0 10715145 /bin/bash (deleted)
bash 8351 root txt REG 104,2 768952 0 10715145 /bin/bash (deleted)
bash 8387 root txt REG 104,2 768952 0 10715145 /bin/bash (deleted)
rsyslogd 14220 root txt REG 104,2 267608 0 5603400 /sbin/rsyslogd (deleted)
# lsof +L1
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NLINK NODE NAME
bash 8313 root txt REG 104,2 768952 0 10715145 /bin/bash (deleted)
bash 8351 root txt REG 104,2 768952 0 10715145 /bin/bash (deleted)
bash 8387 root txt REG 104,2 768952 0 10715145 /bin/bash (deleted)
rsyslogd 14220 root txt REG 104,2 267608 0 5603400 /sbin/rsyslogd (deleted)
# lsof +aL1
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NLINK NODE NAME
bash 8313 root txt REG 104,2 768952 0 10715145 /bin/bash (deleted)
bash 8351 root txt REG 104,2 768952 0 10715145 /bin/bash (deleted)
bash 8387 root txt REG 104,2 768952 0 10715145 /bin/bash (deleted)
rsyslogd 14220 root txt REG 104,2 267608 0 5603400 /sbin/rsyslogd (deleted)
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/267265/viewspace-2731783/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 電腦TXT檔案怎麼顯示行數? 電腦TXT檔案行數檢視方法
- mac顯示隱藏檔案,取消顯示隱藏檔案Mac
- lsof恢復誤刪的檔案
- Mac顯示/不顯示隱藏檔案教程!Mac
- mac隱藏檔案顯示Mac
- PlY檔案讀取顯示
- Mac 顯示隱藏檔案Mac
- Swift iOS : 顯示SVG檔案的方法SwiftiOSSVG
- 使用lsof恢復誤刪除的檔案
- 使用 lsof 查詢開啟的檔案(轉)
- jsp顯示excel檔案的問題JSExcel
- git status顯示了未修改的檔案Git
- 【macOS】顯示/隱藏 指定檔案Mac
- MACOS 如何顯示隱藏檔案Mac
- [linux] fuser程式顯示檔案Linux
- 如何防止Apache顯示檔案列表Apache
- [20220826]顯示alert日誌檔案全路徑.txt
- WinPE中如何改變檔案顯示圖示
- link/Extended dependency 無法顯示連線
- win10怎麼顯示檔案字尾_window10如何顯示檔案字尾副檔名Win10
- 電腦檔案字尾名怎麼顯示?電腦中顯示檔案字尾(副檔名)的設定方法
- chm 檔案開啟只顯示目錄,不顯示內容
- 使用 lsof 查詢開啟的檔案 (ibm)IBM
- solaris下使用lsof恢復刪除的檔案
- ZT:使用lsof恢復誤刪除的檔案
- [20220826]ls顯示檔案不區分大小寫.txt
- lsof恢復oracle誤刪除檔案Oracle
- 不能顯示隱藏檔案的終極方法
- 讓emacs完美顯示BMP檔案的辦法Mac
- 不能正常顯示WINDOWS隱藏檔案Windows
- mac 隱藏檔案顯示 快捷鍵Mac
- 關於顯示稀疏列的列的自述檔案
- 顯示所有檔案和資料夾"失效 解決無法顯示所有檔案和資料夾
- 如何在Windows7中顯示檔案的副檔名Windows
- 限制檔案大小及顯示檔案大小(正規表示式
- 常見的linux的檔案顯示的顏色Linux
- Linux下使用lsof恢復刪除的檔案Linux
- MAC如何顯示隱藏檔案和隱藏隱藏檔案的命令Mac