NOM

lslocks - Afficher les verrous système locaux

SYNOPSIS

lslocks [options]

DESCRIPTION

lslocks affiche des renseignements sur les verrous de fichier actuellement maintenus dans un système Linux.
 
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.

OPTIONS

-b, --bytes
Afficher la taille (colonne SIZE) en octets plutôt qu'en format lisible.
 
Par défaut l'unité dans laquelle les tailles sont exprimées est l'octet et les préfixes d'unité sont des puissances de 2^10 (1024). Les abréviations des symboles sont tronqués pour obtenir une meilleur lisibilité, en n'affichant que la première lettre, par exemple : « 1 Kio » et « 1 Mio » sont affichés « 1 K » et « 1 M » en omettant délibérément l'indication « io » qui fait partie de ces abréviations.
 
-i, --noinaccessible
Ignorer les fichiers de verrou inaccessibles à l’utilisateur actuel.
 
-J, --json
Utiliser le format de sortie JSON.
 
-n, --noheadings
Ne pas imprimer de ligne d'en-tête.
 
-o, --output liste
Indiquer les colonnes à afficher. Utilisez --help pour obtenir une liste de toutes les colonnes disponibles.
 
La liste de colonnes par défaut peut être étendue si liste est indiquée sous la forme +liste (par exemple, lslocks -o +BLOCKER).
 
--output-all
Afficher toutes les colonnes disponibles.
 
-p, --pid pid
N’afficher que les verrous maintenus par le processus avec ce PID.
 
-r, --raw
Utiliser l'affichage au format brut.
 
-u, --notruncate
Ne pas tronquer le texte des colonnes.
 
-h, --help
Afficher l’aide-mémoire puis quitter.
 
-V, --version
Afficher la version puis quitter.

SORTIE

COMMAND
Le nom de commande du processus qui détient le verrou.
 
PID
L’identifiant de processus du processus qui détient le verrou ou -1 pour 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
La taille du fichier verrouillé.
 
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
Position relative en octet du verrou.
 
END
Position finale du verrou.
 
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
Le PID du processus qui bloque le verrou.

NOTES

The lslocks command is meant to replace the lslk(8) command, originally written by Victor <[email protected]>A. and unmaintained since 2001.

AUTEURS

Davidlohr <[email protected]>Bueso

VOIR AUSSI

flock(1), fcntl(2), lockf(3)

SIGNALER DES BOGUES

Pour envoyer un rapport de bogue, utilisez le système de gestion des problèmes à l'adresse <https://github.com/util-linux/util-linux/issues>.

DISPONIBILITÉ

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/>.

TRADUCTION

La traduction française de cette page de manuel a été créée par Christophe Blaess <[email protected]>, Michel Quercia <quercia AT cal DOT enst DOT fr>, Thierry Vignaud <[email protected]>, Frédéric Delanoy <[email protected]>, Christophe Sauthier <[email protected]>, Sébastien Blanchet, Jérôme Perzyna <[email protected]>, Aymeric Nys <aymeric AT nnx POINT com>, Alain Portal <[email protected]>, Thomas Huriaux <[email protected]>, Yves Rütschlé <[email protected]>, Jean-Luc Coulon (f5ibh) <[email protected]>, Julien Cristau <[email protected]>, Philippe Piette <[email protected]>, Jean-Baka Domelevo-Entfellner <[email protected]>, Nicolas Haller <[email protected]>, Sylvain Archenault <[email protected]>, Valéry Perrin <[email protected]>, Jade Alglave <[email protected]>, Nicolas François <[email protected]>, Alexandre Kuoch <[email protected]>, Lyes Zemmouche <[email protected]>, Florentin Duneau <[email protected]>, Alexandre Normand <[email protected]> et David Prévot <[email protected]>
Cette traduction est une documentation libre ; veuillez vous reporter à la GNU General Public License version 3 concernant les conditions de copie et de distribution. Il n'y a aucune RESPONSABILITÉ LÉGALE.
Si vous découvrez un bogue dans la traduction de cette page de manuel, veuillez envoyer un message à [email protected]

Recommended readings

Pages related to lslocks you should read also: