fuser 命令概述

mingziday發表於2013-08-16

fuser 概述

fuser命令是用來顯示所有正在使用著指定的file, file system 或者 sockets的程式資訊。

例一:

#fuser –m –u /mnt/usb1 
/mnt/usb1:  1347c(root)  1348c(guido)  1349c(guido)

在例子一中,使用了-m和-u選項,用來查詢所有正在使用/mnt/usb1的所有程式的PID已經該程式的OWNER,如1347c(root),其中1347是程式PID,root是該程式的OWNER。

fuser會顯示正在使用指定的file,file system 或者 sockets的程式的PID。在預設的顯示模式下,每個檔名之後會跟隨一個字元,用來指示當前的訪問型別。

如下所示:

current directory.executable being run.open file.open file for writing.root directory.mmap'ed file or shared library

同時fuser 可以用來查詢哪些程式正在使用指定的network port。

[root@bl25p-19 /]# fuser -v -n tcp 111

                           USER        PID   ACCESS   COMMAND 
111/tcp:             rpc        2848   F....         portmap 

 

fuser 的返回值:

fuser如果沒有找到任何程式正在使用指定的file, filesystem 或 socket, 或者在查詢過程中發生了fatal error,則返回non-zero 值。

fuser如果找到至少一個程式正在使用指定的file, filesystem 或 socket,則返回zero。

 

fuser 常用場景

fuser通常被用在診斷系統的“resource busy”問題,通常是在你希望umount指定的掛載點得時候遇到。 如果你希望kill所有正在使用某一指定的file, file system or sockets的程式的時候,你可以使用-k option。

fuser –k /path/to/your/filename

這時fuser會向所以正在使用/path/to/your/filename的程式傳送SIGKILL。如果你希望在傳送之前得到提示,可以使用-i 選項。

fuser –k –i /path/to/your/filename

fuser的其他有用的引數

-k 
kills all process accessing a file. For example fuser -k /path/to/your/filename kills all processes accessing this directory without confirmation. Use -i for confirmation
-i 
interactive mode. Prompt before killing process
-v 
verbose.
-u 
append username
-a 
display all files
-m 
name specifies a file on a mounted file system or a block device that is mounted. All processes accessing files on that file system are listed. If a directory file is specified, it is automatically changed to name/. to use any file system that might be mounted on that directory.

相關文章