21 lines
343 B
Markdown
21 lines
343 B
Markdown
# identification de la machine
|
|
|
|
Le contenu du fichier /etc/motd est affiché lors de la connexion au système.
|
|
|
|
## Instruction
|
|
|
|
Rajouter votre NOM prénom dans le fichier /etc/motd
|
|
|
|
Respectez le format: NOM en majuscule espace prénom
|
|
|
|
```bash
|
|
echo "CONSTANS Thomas" > /etc/motd
|
|
```
|
|
|
|
## Validation
|
|
|
|
```bash
|
|
$ cat /etc/motd
|
|
CONSTANS Thomas
|
|
```
|