# French translation of manpages # This file is distributed under the same license as the manpages-l10n package. # Copyright © of this file: # Christophe Blaess , 1996-2003. # Stéphan Rafin , 2002. # Thierry Vignaud , 1999, 2002. # François Micaux, 2002. # Alain Portal , 2003-2008. # Jean-Philippe Guérard , 2005-2006. # Jean-Luc Coulon (f5ibh) , 2006-2007. # Julien Cristau , 2006-2007. # Thomas Huriaux , 2006-2008. # Nicolas François , 2006-2008. # Florentin Duneau , 2006-2010. # Simon Paillard , 2006, 2013, 2014. # Denis Barbier , 2006, 2010, 2011. # David Prévot , 2010, 2012-2014. # Jean-Pierre Giraud , 2023-2024. msgid "" msgstr "" "Project-Id-Version: manpages-l10n\n" "POT-Creation-Date: 2024-06-01 06:25+0200\n" "PO-Revision-Date: 2024-01-24 09:49+0100\n" "Last-Translator: Jean-Pierre Giraud \n" "Language-Team: French \n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 3.1.1\n" #. type: TH #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "sysinfo" msgstr "sysinfo" #. type: TH #: archlinux debian-unstable opensuse-tumbleweed #, no-wrap msgid "2024-05-02" msgstr "2 mai 2024" #. type: TH #: archlinux debian-unstable #, no-wrap msgid "Linux man-pages 6.8" msgstr "Pages du manuel de Linux 6.8" #. type: SH #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "NAME" msgstr "NOM" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "sysinfo - return system information" msgstr "sysinfo - Obtenir des informations sur le système" #. type: SH #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "LIBRARY" msgstr "BIBLIOTHÈQUE" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "Standard C library (I, I<-lc>)" msgstr "Bibliothèque C standard (I, I<-lc>)" #. type: SH #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "SYNOPSIS" msgstr "SYNOPSIS" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "B<#include Esys/sysinfo.hE>\n" msgstr "B<#include Esys/sysinfo.hE>\n" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "BIB<);>\n" msgstr "BIB<);>\n" #. type: SH #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "DESCRIPTION" msgstr "DESCRIPTION" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "B() returns certain statistics on memory and swap usage, as well " "as the load average." msgstr "" "B() renvoie des statistiques sur l'utilisation de la mémoire, le " "swap ainsi que sur la charge moyenne." #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "Until Linux 2.3.16, B() returned information in the following " "structure:" msgstr "" "Jusqu'à Linux 2.3.16, B() renvoyait les informations dans la " "structure suivante\\ :" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "" "struct sysinfo {\n" " long uptime; /* Seconds since boot */\n" " unsigned long loads[3]; /* 1, 5, and 15 minute load averages */\n" " unsigned long totalram; /* Total usable main memory size */\n" " unsigned long freeram; /* Available memory size */\n" " unsigned long sharedram; /* Amount of shared memory */\n" " unsigned long bufferram; /* Memory used by buffers */\n" " unsigned long totalswap; /* Total swap space size */\n" " unsigned long freeswap; /* Swap space still available */\n" " unsigned short procs; /* Number of current processes */\n" " char _f[22]; /* Pads structure to 64 bytes */\n" "};\n" msgstr "" "struct sysinfo {\n" " long uptime; /* Secondes écoulées depuis le boot */\n" " unsigned long loads[3]; /* Charges depuis 1, 5, et 15 mn */\n" " unsigned long totalram; /* Mémoire totale du système */\n" " unsigned long freeram; /* Mémoire disponible */\n" " unsigned long sharedram; /* Mémoire partagée */\n" " unsigned long bufferram; /* Mémoire utilisée par les tampons */\n" " unsigned long totalswap; /* Taille totale du swap */\n" " unsigned long freeswap; /* Espace disponible dans le swap */\n" " unsigned short procs; /* Nombre de processus actuels */\n" " char _f[22]; /* Remplissage jusqu'à 64 octets */\n" "};\n" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "In the above structure, the sizes of the memory and swap fields are given in " "bytes." msgstr "" "Dans la structure ci-dessus, la taille des champs mémoire et swap est " "indiquée en octet." #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "Since Linux 2.3.23 (i386) and Linux 2.3.48 (all architectures) the structure " "is:" msgstr "" "Depuis Linux 2.3.23 (i386) et Linux 2.3.48 (toutes architectures), la " "structure est devenue\\ :" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "" "struct sysinfo {\n" " long uptime; /* Seconds since boot */\n" " unsigned long loads[3]; /* 1, 5, and 15 minute load averages */\n" " unsigned long totalram; /* Total usable main memory size */\n" " unsigned long freeram; /* Available memory size */\n" " unsigned long sharedram; /* Amount of shared memory */\n" " unsigned long bufferram; /* Memory used by buffers */\n" " unsigned long totalswap; /* Total swap space size */\n" " unsigned long freeswap; /* Swap space still available */\n" " unsigned short procs; /* Number of current processes */\n" " unsigned long totalhigh; /* Total high memory size */\n" " unsigned long freehigh; /* Available high memory size */\n" " unsigned int mem_unit; /* Memory unit size in bytes */\n" " char _f[20-2*sizeof(long)-sizeof(int)];\n" " /* Padding to 64 bytes */\n" "};\n" msgstr "" "struct sysinfo {\n" " long uptime; /* Secondes écoulées depuis le boot */\n" " unsigned long loads[3]; /* Charges depuis 1, 5, et 15 mn */\n" " unsigned long totalram; /* Mémoire totale du système */\n" " unsigned long freeram; /* Mémoire disponible */\n" " unsigned long sharedram; /* Mémoire partagée */\n" " unsigned long bufferram; /* Mémoire utilisée par les tampons */\n" " unsigned long totalswap; /* Taille totale du swap */\n" " unsigned long freeswap; /* Espace disponible dans le swap */\n" " unsigned short procs; /* Nombre de processus actuel */\n" " unsigned long totalhigh; /* Taille totale mémoire haute */\n" " unsigned long freehigh; /* Taille mémoire haute libre */\n" " usigned int mem_unit; /* Taille de bloc mémoire en octets */\n" " char _f[20-2*sizeof(long)-sizeof(int)];\n" " /* remplissage à 64 octets */\n" "};\n" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "In the above structure, sizes of the memory and swap fields are given as " "multiples of I bytes." msgstr "" "Dans la structure ci-dessus, la taille des champs mémoire et swap est " "indiquée sous forme de multiples de I octets." #. type: SH #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "RETURN VALUE" msgstr "VALEUR RENVOYÉE" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "On success, B() returns zero. On error, -1 is returned, and " "I is set to indicate the error." msgstr "" "Si elle réussit, B() renvoie zéro. En cas d'erreur, elle renvoie " "B<-1> et I est défini pour indiquer l'erreur." #. type: SH #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "ERRORS" msgstr "ERREURS" #. type: TP #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "B" msgstr "B" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "I is not a valid address." msgstr "I n'est pas une adresse valable." #. type: SH #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "STANDARDS" msgstr "STANDARDS" #. type: Plain text #: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron #: opensuse-leap-15-6 opensuse-tumbleweed msgid "Linux." msgstr "Linux." #. type: SH #: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron #: opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "HISTORY" msgstr "HISTORIQUE" #. type: Plain text #: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron #: opensuse-leap-15-6 opensuse-tumbleweed msgid "Linux 0.98.pl6." msgstr "Linux 0.98.pl6." #. type: SH #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "NOTES" msgstr "NOTES" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "All of the information provided by this system call is also available via I and I." msgstr "" "Toutes les informations fournies par cet appel système sont aussi " "disponibles avec I et I." #. type: SH #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "SEE ALSO" msgstr "VOIR AUSSI" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "B(5)" msgstr "B(5)" #. type: TH #: debian-bookworm #, no-wrap msgid "2022-10-30" msgstr "30 octobre 2022" #. type: TH #: debian-bookworm #, no-wrap msgid "Linux man-pages 6.03" msgstr "Pages du manuel de Linux 6.03" #. type: SH #: debian-bookworm #, no-wrap msgid "VERSIONS" msgstr "VERSIONS" #. type: Plain text #: debian-bookworm msgid "B() first appeared in Linux 0.98.pl6." msgstr "B() est apparu dans Linux 0.98.pl6." #. type: Plain text #: debian-bookworm msgid "" "This function is Linux-specific, and should not be used in programs intended " "to be portable." msgstr "" "Cette fonction est spécifique à Linux et ne devrait pas être employée dans " "des programmes destinés à être portables." #. type: TH #: fedora-40 fedora-rawhide mageia-cauldron #, no-wrap msgid "2023-10-31" msgstr "31 octobre 2023" #. type: TH #: fedora-40 mageia-cauldron #, no-wrap msgid "Linux man-pages 6.06" msgstr "Pages du manuel de Linux 6.06" #. type: TH #: fedora-rawhide #, no-wrap msgid "Linux man-pages 6.7" msgstr "Pages du manuel de Linux 6.7" #. type: TH #: opensuse-leap-15-6 #, no-wrap msgid "2023-03-30" msgstr "30 mars 2023" #. type: TH #: opensuse-leap-15-6 #, no-wrap msgid "Linux man-pages 6.04" msgstr "Pages du manuel de Linux 6.04" #. type: TH #: opensuse-tumbleweed #, no-wrap msgid "Linux man-pages (unreleased)" msgstr "Pages du manuel de Linux (non publiées)"