lslocks - list local system locks
| Use Case | Command | Description |
|---|---|---|
| List all file locks | lslocks |
Display all currently held file locks on the system. |
| Output in JSON format | lslocks -J |
Get machine-readable JSON output. |
| Filter by process PID | lslocks -p pid |
Show only locks held by a specific process. |
| Raw (unformatted) output | lslocks -r |
Use raw output format (no column alignment). |
| Prevent text truncation | lslocks -u |
Display full paths and column values without truncation. |
| Show blocker column | lslocks -o +BLOCKER |
Extend default columns to include the blocker PID. |
| Hide inaccessible files | lslocks -i |
Skip lock files that cannot be read by the current user. |
lslocks [options]
lslocks lists information about all the currently held file locks in a Linux system.
Note that lslocks also lists OFD (Open File Description) locks, these locks are not associated with any process (PID is -1). OFD locks are associated with the open file description on which they are acquired. This lock type is available since Linux 3.15, see fcntl(2) for more details.
-b, --bytesPrint the SIZE column in bytes rather than in a human-readable format.
-i, --noinaccessibleIgnore lock files which are inaccessible for the current user.
-J, --jsonUse JSON output format.
-n, --noheadingsDo not print a header line.
-o, --output listSpecify which output columns to print. Use --help to get a list of all supported columns.
The default list of columns may be extended if list is specified in the format +list (e.g., lslocks -o +BLOCKER).
--output-allOutput all available columns.
-p, --pid pidDisplay only the locks held by the process with this pid.
-r, --rawUse the raw output format.
-u, --notruncateDo not truncate text in columns.
-V, --versionDisplay version information and exit.
-h, --helpDisplay help text and exit.
COMMAND — The command name of the process holding the lock.
PID — The process ID of the process which holds the lock or -1 for OFDLCK.
TYPE — The type of lock; can be FLOCK (created with flock(2)), POSIX (created with fcntl(2) and lockf(3)) or OFDLCK (created with fcntl(2)).
SIZE — Size of the locked file.
MODE — The lock's access permissions (read, write). If the process is blocked and waiting for the lock, then the mode is postfixed with an '*' (asterisk).
M — Whether the lock is mandatory; 0 means no (meaning the lock is only advisory), 1 means yes. (See fcntl(2).)
START — Relative byte offset of the lock.
END — Ending offset of the lock.
PATH — Full path of the lock. If none is found, or there are no permissions to read the path, it will fall back to the device's mountpoint and "..." is appended to the path. The path might be truncated; use --notruncate to get the full path.
BLOCKER — The PID of the process which blocks the lock.
The lslocks command is meant to replace the lslk(8) command, originally written by Victor A. Abell <abe AT purdue.edu> and unmaintained since 2001.
Davidlohr Bueso <dave AT gnu.org>
For bug reports, use the issue tracker at https://github.com/karelzak/util-linux/issues.
The lslocks command is part of the util-linux package which can be downloaded from Linux Kernel Archive <https://www.kernel.org/pub/linux/utils/util-linux/>.
Generated by phpman v4.9.26-1-g511901d Author: Che Dong Under GNU General Public License
2026-08-06 18:11 @216.73.216.79
CrawledBy Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)
Enhanced by LLM: deepseek-v4-flash / taotoken.net / www.chedong.com - original format