table of contents
- bookworm 4.18.1-1
- bookworm-backports 4.24.0-2~bpo12+1
- testing 4.24.0-2
- unstable 4.24.0-2
updwtmp(3) | Library Functions Manual | updwtmp(3) |
NOM¶
updwtmp, logwtmp - Ajouter une entrée dans le fichier wtmp
BIBLIOTHÈQUE¶
Bibliothèque d'utilitaires système (libutil, -lutil)
SYNOPSIS¶
#include <utmp.h>
void updwtmp(const char *wtmp_file, const struct utmp *ut); void logwtmp(const char *ligne, const char *nom, const char *hôte);
DESCRIPTION¶
updwtmp() ajoute une structure utmp ut dans le fichier wtmp.
logwtmp() construit une structure utmp en utilisant les valeurs ligne, nom, hôte, l'heure actuelle et le numéro de processus appelant. Ensuite, il appelle updwtmp() pour ajouter cette structure au fichier wtmp.
FICHIERS¶
- /var/log/wtmp
- base de données des connexions passées.
ATTRIBUTS¶
Pour une explication des termes utilisés dans cette section, consulter attributes(7).
Interface | Attribut | Valeur |
updwtmp(), logwtmp() | Sécurité des threads | MT-Unsafe sig:ALRM timer |
VERSIONS¶
Pour cohérence avec les autres fonctions « utmpx » (consultez getutxent(3)), la glibc fournit (depuis la glibc 2.1) :
#define _GNU_SOURCE /* Consultez feature_test_macros(7) */ #include <utmpx.h> void updwtmpx (const char *wtmpx_file, const struct utmpx *utx);
Cette fonction effectue les mêmes tâches que updwtmp(), mais en diffère en ce qu'elle prend une structure utmpx comme dernier paramètre.
STANDARDS¶
Aucun.
HISTORIQUE¶
Solaris, NetBSD.
VOIR AUSSI¶
TRADUCTION¶
La traduction française de cette page de manuel a été créée par Christophe Blaess <https://www.blaess.fr/christophe/>, Stéphan Rafin <stephan.rafin@laposte.net>, Thierry Vignaud <tvignaud@mandriva.com>, François Micaux, Alain Portal <aportal@univ-montp2.fr>, Jean-Philippe Guérard <fevrier@tigreraye.org>, Jean-Luc Coulon (f5ibh) <jean-luc.coulon@wanadoo.fr>, Julien Cristau <jcristau@debian.org>, Thomas Huriaux <thomas.huriaux@gmail.com>, Nicolas François <nicolas.francois@centraliens.net>, Florentin Duneau <fduneau@gmail.com>, Simon Paillard <simon.paillard@resel.enst-bretagne.fr>, Denis Barbier <barbier@debian.org>, David Prévot <david@tilapin.org>, Jean-Baptiste Holcroft <jean-baptiste@holcroft.fr> et Grégoire Scano <gregoire.scano@malloc.fr>
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 à debian-l10n-french@lists.debian.org.
2 mai 2024 | Pages du manuel de Linux 6.8 |