From 0618196ab59c1f57fe3bf389abfb9baee8407756 Mon Sep 17 00:00:00 2001 From: PAPAMICA Date: Mon, 14 Jun 2021 07:43:45 +0000 Subject: [PATCH] =?UTF-8?q?docs:=20update=20Linux/D=C3=A9butant/MOTD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Linux/Débutant/MOTD.md | 72 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 Linux/Débutant/MOTD.md diff --git a/Linux/Débutant/MOTD.md b/Linux/Débutant/MOTD.md new file mode 100644 index 0000000..3cb16f0 --- /dev/null +++ b/Linux/Débutant/MOTD.md @@ -0,0 +1,72 @@ +--- +title: MOTD +description: +published: true +date: 2021-06-14T07:43:45.184Z +tags: +editor: markdown +dateCreated: 2021-05-24T10:35:28.155Z +--- + +# Changer le MOTD + +## Message statique + +Sur Linux, à chaque connexion SSH, vous retrouvez un petit message d’accueil vous donnant quelques informations utiles. + +Dans notre cas, nous voulons le changer afin de pouvoir identifier rapidement sur quels serveurs nous nous trouvons mais aussi afficher d’autres informations utiles. + +Le texte qui s’affiche à chaque connexion SSH se trouve dans le fichier motd que vous pouvez retrouver ici : `/etc/motd` + +```plaintext +nano /etc/motd +``` + +### Voici quelques exemple de MOTD statiques : + +```plaintext + ██╗ ██╗███████╗██╗ ██████╗ ██████╗ ███╗ ███╗███████╗ + ██║ ██║██╔════╝██║ ██╔════╝██╔═══██╗████╗ ████║██╔════╝ + ██║ █╗ ██║█████╗ ██║ ██║ ██║ ██║██╔████╔██║█████╗ + ██║███╗██║██╔══╝ ██║ ██║ ██║ ██║██║╚██╔╝██║██╔══╝ + ╚███╔███╔╝███████╗███████╗╚██████╗╚██████╔╝██║ ╚═╝ ██║███████╗ + ╚══╝╚══╝ ╚══════╝╚══════╝ ╚═════╝ ╚═════╝ ╚═╝ ╚═╝╚══════╝ + + Server : NURION + + IP : XXX.XXX.XXX.XXX + + Provider : Infomaniak +``` + +```plaintext + █████╗ ███╗ ██╗███████╗██╗██████╗ ██╗ ███████╗ +██╔══██╗████╗ ██║██╔════╝██║██╔══██╗██║ ██╔════╝ +███████║██╔██╗ ██║███████╗██║██████╔╝██║ █████╗ +██╔══██║██║╚██╗██║╚════██║██║██╔══██╗██║ ██╔══╝ +██║ ██║██║ ╚████║███████║██║██████╔╝███████╗███████╗ +╚═╝ ╚═╝╚═╝ ╚═══╝╚══════╝╚═╝╚═════╝ ╚══════╝╚══════╝ + |-------------------------------------------------| + | Bienvenue | + |-------------------------------------------------| + |------------------- VPS -------------------| + |-------------------------------------------------| + | | + | Server Ansible | + | | + | IP XXX.XXX.XXX.XXX | + | | + | Provider FirstHeberg | + | Machine vps-48235 | + | Purpose Prod Ansible | + | | + |-------------------------------------------------| +``` + +## Message dynamique + +Sinon il existe un petit soft qui permet d'avoir un MOTD dynamique : + +```plaintext +apt-get install figlet +``` \ No newline at end of file