- 论坛徽章:
- 13
|
- NAME
- fuser — list IDs of all processes that have one or more files open
- SYNOPSIS
- fuser [-cfkmu] [-M core] [-N system] [-s signal] [file ...]
- DESCRIPTION
- The fuser utility writes to stdout the PIDs of processes that have one or
- more named files open. For block and character special devices, all pro‐
- cesses using files on that device are listed. A file is considered open
- by a process if it was explicitly opened, is the working directory, root
- directory, jail root directory, active executable text, kernel trace file
- or the controlling terminal of the process. If -m option is specified,
- the fuser utility will also look through mmapped files.
- The following options are available:
- -c Treat files as mount point and report on any files open in the
- file system.
- -f The report must be only for named files.
- -k Send signal to reported processes (SIGKILL by default).
- -m Search through mmapped files too.
- -u Write the user name associated with each process to stderr.
- -M Extract values associated with the name list from the specified
- core instead of the default /dev/kmem.
- -N Extract the name list from the specified system instead of the
- default, which is the kernel image the system has booted from.
- -s Use given signal name instead of default SIGKILL.
复制代码 |
|