{"id":296,"date":"2026-04-08T01:13:46","date_gmt":"2026-04-07T23:13:46","guid":{"rendered":"https:\/\/pandack.fr\/?pandack_commande=commande-linux-debian"},"modified":"2026-04-08T01:14:14","modified_gmt":"2026-04-07T23:14:14","slug":"commande-linux-debian","status":"publish","type":"pandack_commande","link":"https:\/\/pandack.fr\/?pandack_commande=commande-linux-debian","title":{"rendered":"Commande Linux &#8211; Debian"},"content":{"rendered":"<h2>\ud83d\udccb Commande : Commande Linux &#8211; Debian<\/h2>\n<hr>\n<div class=\"callout callout--warning\">\n<div class=\"callout__title\">&gt; Sur les syst\u00e8mes Debian (et ses d\u00e9riv\u00e9s comme Kali Linux ou Ubuntu), la gestion des paquets se fait via APT (Advanced Package Tool) et les fichiers <code>.deb<\/code>.<\/div>\n<div class=\"callout__content\"><\/div>\n<\/div>\n<p>Voir : <a href=\"http:\/\/0.%20Fiche%20Individuelle%20Linux%20(not%20use\" target=\"_blank\" rel=\"noopener\">Exercices sur Bash pour s&rsquo;entra\u00eener<\/a>\/Exercices%20sur%20Bash%20pour%20s&rsquo;entra\u00eener.md) pour s&rsquo;entrain\u00e9 sur :<\/p>\n<ul>\n<li>Gestion des fichiers et r\u00e9pertoires<\/li>\n<li>Manipulation du contenu des fichiers<\/li>\n<li>Permissions et gestion des utilisateurs<\/li>\n<li>Surveillance et gestion des processus<\/li>\n<li>Archivage et compression<\/li>\n<li>Gestion des disques et ressources<\/li>\n<\/ul>\n<hr>\n<h2>Mise \u00e0 jour syst\u00e8me<\/h2>\n<div class=\"callout callout--info\">\n<div class=\"callout__title\">\n<div class=\"code-block-wrapper\">\n<div class=\"code-block-header\"><span class=\"code-language\">bash<\/span><button class=\"code-copy-btn\" type=\"button\">Copier<\/button><\/div>\n<pre><code class=\"language-bash\"># Debian\/Ubuntu\/Kali \nsudo apt update &amp;&amp; sudo apt upgrade -y   \nsudo apt install &lt;package&gt;<\/code><\/pre>\n<\/div>\n<\/div>\n<div class=\"callout__content\"><\/div>\n<\/div>\n<h2>Sudo <\/h2>\n<p><code>sudo<\/code> (SuperUser DO) permet \u00e0 un utilisateur autoris\u00e9 d&rsquo;ex\u00e9cuter une commande avec les droits d&rsquo;un autre utilisateur (g\u00e9n\u00e9ralement le superutilisateur root). C&rsquo;est un m\u00e9canisme essentiel pour l&rsquo;administration s\u00e9curis\u00e9e.<\/p>\n<p>Voir d\u00e9tail : <a href=\"http:\/\/0.%20Fiche%20Individuelle%20Linux%20(not%20use\" target=\"_blank\" rel=\"noopener\">Sudo<\/a>\/Sudo.md)<\/p>\n<h2>Tips &amp; Raccourcis<\/h2>\n<h2>Redirections<\/h2>\n<div class=\"code-block-wrapper\">\n<div class=\"code-block-header\"><span class=\"code-language\">bash<\/span><button class=\"code-copy-btn\" type=\"button\">Copier<\/button><\/div>\n<pre><code class=\"language-bash\"># Redirection standard \n\tcommand &gt; output.txt  # Stdout vers fichier \n\tcommand 2&gt; error.txt  # Stderr vers fichier \n\tcommand &amp;&gt; all.txt    # Tout vers fichier \n\tcommand &gt;&gt; append.txt # Ajouter au fichier \n\n# Supprimer les erreurs \n\tcommand + \n\n# Pipe et tee \n\tcommand | tee output.txt # Affiche ET sauvegarde<\/code><\/pre>\n<\/div>\n<p><strong>exemple<\/strong> : <em>italit<\/em><\/p>\n<div class=\"code-block-wrapper\">\n<div class=\"code-block-header\"><span class=\"code-language\">bash<\/span><button class=\"code-copy-btn\" type=\"button\">Copier<\/button><\/div>\n<pre><code class=\"language-bash\">echo &quot;mon texte\/script&quot; &gt; fichier.txt\ncat fichier.txt\nmon texte\/script<\/code><\/pre>\n<\/div>\n<h2>Variables d&rsquo;environnement importantes<\/h2>\n<div class=\"code-block-wrapper\">\n<div class=\"code-block-header\"><span class=\"code-language\">bash<\/span><button class=\"code-copy-btn\" type=\"button\">Copier<\/button><\/div>\n<pre><code class=\"language-bash\">$PATH     # Chemins des ex\u00e9cutables\n$HOME     # R\u00e9pertoire home\n$USER     # Nom d&#039;utilisateur\n$SHELL    # Shell actuel\n$PWD      # R\u00e9pertoire actuel\n$OLDPWD   # R\u00e9pertoire pr\u00e9c\u00e9dent\n$?        # Code de retour derni\u00e8re commande\n$$        # PID du shell actuel<\/code><\/pre>\n<\/div>\n<h2>Expressions r\u00e9guli\u00e8res communes<\/h2>\n<div class=\"code-block-wrapper\">\n<div class=\"code-block-header\"><span class=\"code-language\">bash<\/span><button class=\"code-copy-btn\" type=\"button\">Copier<\/button><\/div>\n<pre><code class=\"language-bash\"># Classes de caract\u00e8res \n[a-z] # Une lettre de a \u00e0 z.\n[A-Z] # Une lettre de A \u00e0 Z.\n[0-9] # Un chiffre de 0 \u00e0 9.\n[a-zA-Z] # N&#039;importe quelle lettre (min ou maj).\n. # N&#039;importe quel caract\u00e8re unique (sauf saut de ligne).\n* # 0 ou plusieurs fois le caract\u00e8re pr\u00e9c\u00e9dent. \n+ # 1 ou plusieurs fois le caract\u00e8re pr\u00e9c\u00e9dent.\n? # 0 ou 1 fois le caract\u00e8re pr\u00e9c\u00e9dent (optionnel).\n^ # D\u00e9but de ligne. \n$ # Fin de ligne<\/code><\/pre>\n<\/div>\n<h2>Les alias<\/h2>\n<p>Le shell propose une commande interne\u00a0alias\u00a0qui permet de cr\u00e9er des raccourcis\u00a0sur des commandes. Un certain nombre d\u2019alias existent par d\u00e9faut.<\/p>\n<p><strong>Exemple<\/strong><\/p>\n<p>Cr\u00e9ation de trois alias :\u00a0l,\u00a0c, et\u00a0rm\u00a0qui seront respectivement les \u00e9quivalents de\u00a0<code>ls\u00a0-l<\/code> ,\u00a0<code>clear<\/code>\u00a0et\u00a0<code>rm\u00a0-i<\/code>\u00a0:<\/p>\n<div class=\"code-block-wrapper\">\n<div class=\"code-block-header\"><span class=\"code-language\">bash<\/span><button class=\"code-copy-btn\" type=\"button\">Copier<\/button><\/div>\n<pre><code class=\"language-bash\">$ alias l=&#039;ls -l&#039;\u00a0\n$ l\u00a0\ntotal 30\u00a0\n-rw-r--r-- 1 christie cours 11428 Jan 28 06:19 out\u00a0\n-rw-r--r-- 1 christie cours 22 Jan 31 17:08 out2\u00a0\n-rwxr--r-- 1 christie cours 18 Nov 15 20:08 premier\u00a0\n-rw-r--r-- 1 christie cours 51 Jan 28 06:22 resu\u00a0\n$ alias c=&#039;clear&#039;\u00a0\n$ alias rm=&#039;rm -i&#039;\u00a0\n$ rm out\u00a0\nrm: remove out (y\/n)? n\u00a0\n$ <\/code><\/pre>\n<\/div>\n<p>Pour visualiser les alias on utiliser la commande : <code>alias<\/code><br \/>\nPour visualiser un alias en particulier : <code>alias l<\/code> \/ <code>alias c<\/code>&#8230;<br \/>\nPour supprimer un alias : <code>unalias l<\/code> \/ <code>alias c<\/code>&#8230;<\/p>\n<blockquote>\n<p>l et c correspond au nom de l&rsquo;alias !<\/p>\n<\/blockquote>\n<h2>Commande de Base<\/h2>\n<h2>Navigation &amp; Exploration de fichier<\/h2>\n<table>\n<thead>\n<tr>\n<th>Commande<\/th>\n<th>Description<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>pwd<\/td>\n<td>Afficher le r\u00e9pertoire actuel<\/td>\n<\/tr>\n<tr>\n<td>[ls](0.%20Fiche%20Individuelle%20Linux%20(not%20use)\/ls.md)<\/td>\n<td>Lister le contenu<\/td>\n<\/tr>\n<tr>\n<td>[cd](0.%20Fiche%20Individuelle%20Linux%20(not%20use)\/cd.md)<\/td>\n<td>Changer de r\u00e9pertoire<\/td>\n<\/tr>\n<tr>\n<td>[find](0.%20Fiche%20Individuelle%20Linux%20(not%20use)\/find.md)<\/td>\n<td>Rechercher des fichiers<\/td>\n<\/tr>\n<tr>\n<td>[[locate]]<\/td>\n<td>Recherche rapide (base index\u00e9e)<\/td>\n<\/tr>\n<tr>\n<td>[[which]]<\/td>\n<td>localise un programme dans l&rsquo;arborescence du syst\u00e8me<\/td>\n<\/tr>\n<tr>\n<td>[[tree]]<\/td>\n<td>Afficher l&rsquo;arborescence<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h2>Manipulation de fichier<\/h2>\n<table>\n<thead>\n<tr>\n<th>Commande<\/th>\n<th>Description<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>[cat](0.%20Fiche%20Individuelle%20Linux%20(not%20use)\/cat.md)<\/td>\n<td>Lire un fichier<\/td>\n<\/tr>\n<tr>\n<td><\/td>\n<td><\/td>\n<\/tr>\n<tr>\n<td><strong>[head](0.%20Fiche%20Individuelle%20Linux%20(not%20use)\/head.md)<\/strong><\/td>\n<td>Afficher les premi\u00e8res lignes d\u2019un fichier<\/td>\n<\/tr>\n<tr>\n<td><strong>[tail](0.%20Fiche%20Individuelle%20Linux%20(not%20use)\/tail.md)<\/strong><\/td>\n<td>Afficher les derni\u00e8res lignes d\u2019un fichier.<\/td>\n<\/tr>\n<tr>\n<td><strong>[[less\/more]]<\/strong><\/td>\n<td>Lire un fichier page par page<\/td>\n<\/tr>\n<tr>\n<td><strong>[uniq](0.%20Fiche%20Individuelle%20Linux%20(not%20use)\/uniq.md)<\/strong><\/td>\n<td>Supprimer les doublons cons\u00e9cutifs<\/td>\n<\/tr>\n<tr>\n<td><\/td>\n<td><\/td>\n<\/tr>\n<tr>\n<td><strong>[tee](0.%20Fiche%20Individuelle%20Linux%20(not%20use)\/tee.md)<\/strong><\/td>\n<td>Redirection &amp; Gestion des entr\u00e9es\/sorties<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h2>Les filtres<\/h2>\n<table>\n<thead>\n<tr>\n<th>Commande<\/th>\n<th>Description<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td><strong>[[sed]]<\/strong><\/td>\n<td>Modifier ou filtrer du texte avec des expressions r\u00e9guli\u00e8res<\/td>\n<\/tr>\n<tr>\n<td><strong>[awk](0.%20Fiche%20Individuelle%20Linux%20(not%20use)\/awk.md)<\/strong><\/td>\n<td>Extraire, transformer et analyser des champs dans des lignes<\/td>\n<\/tr>\n<tr>\n<td>[wc](0.%20Fiche%20Individuelle%20Linux%20(not%20use)\/wc.md)<\/td>\n<td>Compter le nombre de mots, lignes ou caract\u00e8res<\/td>\n<\/tr>\n<tr>\n<td><strong>[sort](0.%20Fiche%20Individuelle%20Linux%20(not%20use)\/sort.md)<\/strong><\/td>\n<td>Trier les lignes d\u2019un fichier ou d\u2019une sortie<\/td>\n<\/tr>\n<tr>\n<td><strong>[cut](0.%20Fiche%20Individuelle%20Linux%20(not%20use)\/cut.md)<\/strong><\/td>\n<td>Extraire des colonnes ou champs d\u2019un fichier texte<\/td>\n<\/tr>\n<tr>\n<td><\/td>\n<td><\/td>\n<\/tr>\n<tr>\n<td><strong>[grep](0.%20Fiche%20Individuelle%20Linux%20(not%20use)\/grep.md)<\/strong><\/td>\n<td>Rechercher un texte dans un fichier<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h2>Gestion des utilisateurs<\/h2>\n<table>\n<thead>\n<tr>\n<th>Commande<\/th>\n<th>Description<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td><strong>[[whoami]]<\/strong><\/td>\n<td>Afficher l\u2019utilisateur courant<\/td>\n<\/tr>\n<tr>\n<td><strong>[[id]]<\/strong><\/td>\n<td>UID et groupes<\/td>\n<\/tr>\n<tr>\n<td><strong>[[su]]<\/strong><\/td>\n<td>Changer d&rsquo;user<\/td>\n<\/tr>\n<tr>\n<td><strong>[Sudo](0.%20Fiche%20Individuelle%20Linux%20(not%20use)\/Sudo.md)<\/strong><\/td>\n<td>Ex\u00e9cuter une commande en tant qu\u2019administrateur.<\/td>\n<\/tr>\n<tr>\n<td><\/td>\n<td><\/td>\n<\/tr>\n<tr>\n<td><strong>[useradd](0.%20Fiche%20Individuelle%20Linux%20(not%20use)\/useradd.md)<\/strong><\/td>\n<td>Cr\u00e9er user<\/td>\n<\/tr>\n<tr>\n<td><strong>[passwd](0.%20Fiche%20Individuelle%20Linux%20(not%20use)\/passwd.md)<\/strong><\/td>\n<td>Changer mdp d&rsquo;un user<\/td>\n<\/tr>\n<tr>\n<td>[usermod](0.%20Fiche%20Individuelle%20Linux%20(not%20use)\/usermod.md)<\/td>\n<td>Modifier user<\/td>\n<\/tr>\n<tr>\n<td><strong>[userdel](0.%20Fiche%20Individuelle%20Linux%20(not%20use)\/userdel.md)<\/strong><\/td>\n<td>Supprim\u00e9 un user<\/td>\n<\/tr>\n<tr>\n<td><\/td>\n<td><\/td>\n<\/tr>\n<tr>\n<td><strong>[[groups]]<\/strong><\/td>\n<td><strong>Affiche<\/strong> la liste des groupes d&rsquo;un utilisateur.<\/td>\n<\/tr>\n<tr>\n<td><strong>[groupadd](0.%20Fiche%20Individuelle%20Linux%20(not%20use)\/groupadd.md)<\/strong><\/td>\n<td><strong>Cr\u00e9e<\/strong> un nouveau groupe vide dans le syst\u00e8me.<\/td>\n<\/tr>\n<tr>\n<td><strong>[groupmod](0.%20Fiche%20Individuelle%20Linux%20(not%20use)\/groupmod.md)<\/strong><\/td>\n<td><strong>Renomme<\/strong> un groupe ou change son ID.<\/td>\n<\/tr>\n<tr>\n<td><strong>[[groupdel]]<\/strong><\/td>\n<td><strong>Supprime<\/strong> un groupe existant.<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h2>Gestion des fichiers<\/h2>\n<table>\n<thead>\n<tr>\n<th>Commande<\/th>\n<th>Description<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td><strong>[[touch]]<\/strong><\/td>\n<td>Cr\u00e9er un fichier vide<\/td>\n<\/tr>\n<tr>\n<td><strong>[mkdir](0.%20Fiche%20Individuelle%20Linux%20(not%20use)\/mkdir.md)<\/strong><\/td>\n<td>Cr\u00e9er r\u00e9pertoire<\/td>\n<\/tr>\n<tr>\n<td><strong>[[cp]]<\/strong><\/td>\n<td>Copier des fichiers ou des dossiers<\/td>\n<\/tr>\n<tr>\n<td><strong>[[mv]]<\/strong><\/td>\n<td>D\u00e9placer\/Renommer<\/td>\n<\/tr>\n<tr>\n<td><strong>[[rm]]<\/strong><\/td>\n<td>D\u00e9placer ou renommer des fichiers<\/td>\n<\/tr>\n<tr>\n<td><strong>[[ln]]<\/strong><\/td>\n<td>Cr\u00e9er des liens<\/td>\n<\/tr>\n<tr>\n<td><strong>[chmod](0.%20Fiche%20Individuelle%20Linux%20(not%20use)\/chmod.md)<\/strong><\/td>\n<td>Modifier les permissions.<\/td>\n<\/tr>\n<tr>\n<td><strong>[chown](0.%20Fiche%20Individuelle%20Linux%20(not%20use)\/chown.md)<\/strong><\/td>\n<td>Changer le propri\u00e9taire d\u2019un fichier.<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h2>Processus &amp; Syst\u00e8me<\/h2>\n<table>\n<thead>\n<tr>\n<th>Commande<\/th>\n<th>Description<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td><strong>[[ps]]<\/strong><\/td>\n<td>Lister processus<\/td>\n<\/tr>\n<tr>\n<td>[top &#8211; htop](0.%20Fiche%20Individuelle%20Linux%20(not%20use)\/top%20-%20htop.md)<\/td>\n<td>Afficher les processus en temps <strong>r\u00e9el<\/strong><\/td>\n<\/tr>\n<tr>\n<td><strong>[[pgrep]]<\/strong><\/td>\n<td>Chercher processus<\/td>\n<\/tr>\n<tr>\n<td><strong>[[kill]]<\/strong><\/td>\n<td>Terminer processus<\/td>\n<\/tr>\n<tr>\n<td><strong>[[jobs]]<\/strong><\/td>\n<td>Afficher les t\u00e2ches en arri\u00e8re-plan<\/td>\n<\/tr>\n<tr>\n<td><strong>[[bg\/fg]]<\/strong><\/td>\n<td>D\u00e9placer une t\u00e2che en arri\u00e8re-plan ou au premier plan<\/td>\n<\/tr>\n<tr>\n<td><strong>[[wait]]<\/strong><\/td>\n<td><\/td>\n<\/tr>\n<tr>\n<td>[[sleep]]<\/td>\n<td><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<table>\n<thead>\n<tr>\n<th>Commande<\/th>\n<th>Description<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>[du](0.%20Fiche%20Individuelle%20Linux%20(not%20use)\/du.md)<\/td>\n<td>Disk Usage = Affiche le taille en blocs du syst\u00e8me de fichiers<\/td>\n<\/tr>\n<tr>\n<td>[df](0.%20Fiche%20Individuelle%20Linux%20(not%20use)\/df.md)<\/td>\n<td>Mesure l&rsquo;espace de disque<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h2>R\u00e9seau &amp; Connectivit\u00e9<\/h2>\n<table>\n<thead>\n<tr>\n<th>Commande<\/th>\n<th>Description<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td><strong>[[ifconfig\/ip]]<\/strong><\/td>\n<td>Configurer et afficher les interfaces r\u00e9seau.<\/td>\n<\/tr>\n<tr>\n<td><strong>[[netstat]]<\/strong><\/td>\n<td>Connexions r\u00e9seau<\/td>\n<\/tr>\n<tr>\n<td><strong>[[ss]]<\/strong><\/td>\n<td>Socket statistics (moderne)<\/td>\n<\/tr>\n<tr>\n<td><strong>[[ping]]<\/strong><\/td>\n<td>Test connectivit\u00e9<\/td>\n<\/tr>\n<tr>\n<td><strong>[[traceroute]]<\/strong><\/td>\n<td>Route vers cible<\/td>\n<\/tr>\n<tr>\n<td><strong>[dig](..\/..\/05%20Pentest\/Fiches%20Pentest\/Fiche%20Outils%20Pentest%20(not%20use)\/dig.md)<\/strong><\/td>\n<td>Requ\u00eates DNS<\/td>\n<\/tr>\n<tr>\n<td><strong>[[arp]]<\/strong><\/td>\n<td>Table ARP<\/td>\n<\/tr>\n<tr>\n<td><strong>[[route]]<\/strong><\/td>\n<td>Table de routage<\/td>\n<\/tr>\n<tr>\n<td><strong>[[nc (netcat)]]<\/strong><\/td>\n<td>Couteau suisse r\u00e9seau<\/td>\n<\/tr>\n<tr>\n<td>lastb<\/td>\n<td>Permet de voir les historiques de connexion<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h2>Archives &amp; Compression<\/h2>\n<table>\n<thead>\n<tr>\n<th>Commande<\/th>\n<th>Description<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td><strong>[tar](0.%20Fiche%20Individuelle%20Linux%20(not%20use)\/tar.md)<\/strong><\/td>\n<td>Archiver et compresser des fichiers<\/td>\n<\/tr>\n<tr>\n<td><strong>[[gzip\/gunzip]]<\/strong><\/td>\n<td>Compresser\/D\u00e9compresser un fichier<\/td>\n<\/tr>\n<tr>\n<td><strong>[[zip\/unzip]]<\/strong><\/td>\n<td>Compresser\/D\u00e9compresser un fichier ZIP<\/td>\n<\/tr>\n<tr>\n<td><strong>[[7z]]<\/strong><\/td>\n<td>7-Zip<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h2>T\u00e9l\u00e9chargement &amp; Transfert<\/h2>\n<table>\n<thead>\n<tr>\n<th>Commande<\/th>\n<th>Description<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td><strong>[[wget]]<\/strong><\/td>\n<td>T\u00e9l\u00e9charger<\/td>\n<\/tr>\n<tr>\n<td><strong>[curl](0.%20Fiche%20Individuelle%20Linux%20(not%20use)\/curl.md)<\/strong><\/td>\n<td>R\u00e9cup\u00e9rer des donn\u00e9es d&rsquo;une URL<\/td>\n<\/tr>\n<tr>\n<td><strong>[[git clone]]<\/strong><\/td>\n<td>Cloner un d\u00e9p\u00f4t<\/td>\n<\/tr>\n<tr>\n<td><strong>[[scp]]<\/strong><\/td>\n<td>Copie s\u00e9curis\u00e9e SSH<\/td>\n<\/tr>\n<tr>\n<td><strong>[[rsync]]<\/strong><\/td>\n<td>Synchronisation<\/td>\n<\/tr>\n<tr>\n<td><strong>[[sftp]]<\/strong><\/td>\n<td>FTP s\u00e9curis\u00e9<\/td>\n<\/tr>\n<tr>\n<td><\/td>\n<td><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h2>Automatisation <\/h2>\n<table>\n<thead>\n<tr>\n<th>Commande<\/th>\n<th>Description<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>[xargs](0.%20Fiche%20Individuelle%20Linux%20(not%20use)\/xargs.md)<\/td>\n<td>multiplicateur de force<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h2>Changement de langue<\/h2>\n<p><strong>En console (TTY, sans serveur X)<\/strong><\/p>\n<div class=\"code-block-wrapper\">\n<div class=\"code-block-header\"><span class=\"code-language\">code<\/span><button class=\"code-copy-btn\" type=\"button\">Copier<\/button><\/div>\n<pre><code>loadkeys fr<\/code><\/pre>\n<\/div>\n<p><strong>Sous X11 \/ Wayland (session graphique)<\/strong><\/p>\n<p>La commande \u00e9quivalente est :<\/p>\n<div class=\"code-block-wrapper\">\n<div class=\"code-block-header\"><span class=\"code-language\">code<\/span><button class=\"code-copy-btn\" type=\"button\">Copier<\/button><\/div>\n<pre><code>setxkbmap fr<\/code><\/pre>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Commande : Commande Linux &#8211; Debian Sur les syst\u00e8mes Debian (et ses d\u00e9riv\u00e9s comme Kali Linux ou Ubuntu), la gestion des paquets se fait via APT (Advanced Package Tool) et les fichiers .deb. Voir : Exer<\/p>\n","protected":false},"template":"","meta":{"footnotes":""},"distribution":[69],"fonction_commande":[],"tag_commande":[],"class_list":["post-296","pandack_commande","type-pandack_commande","status-publish","hentry","distribution-debian"],"_links":{"self":[{"href":"https:\/\/pandack.fr\/index.php?rest_route=\/wp\/v2\/pandack_commande\/296","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pandack.fr\/index.php?rest_route=\/wp\/v2\/pandack_commande"}],"about":[{"href":"https:\/\/pandack.fr\/index.php?rest_route=\/wp\/v2\/types\/pandack_commande"}],"version-history":[{"count":1,"href":"https:\/\/pandack.fr\/index.php?rest_route=\/wp\/v2\/pandack_commande\/296\/revisions"}],"predecessor-version":[{"id":297,"href":"https:\/\/pandack.fr\/index.php?rest_route=\/wp\/v2\/pandack_commande\/296\/revisions\/297"}],"wp:attachment":[{"href":"https:\/\/pandack.fr\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=296"}],"wp:term":[{"taxonomy":"distribution","embeddable":true,"href":"https:\/\/pandack.fr\/index.php?rest_route=%2Fwp%2Fv2%2Fdistribution&post=296"},{"taxonomy":"fonction_commande","embeddable":true,"href":"https:\/\/pandack.fr\/index.php?rest_route=%2Fwp%2Fv2%2Ffonction_commande&post=296"},{"taxonomy":"tag_commande","embeddable":true,"href":"https:\/\/pandack.fr\/index.php?rest_route=%2Fwp%2Fv2%2Ftag_commande&post=296"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}