Stretch Messaggio del giorno: differenze tra le versioni
Vai alla navigazione
Vai alla ricerca
Come rendere permanenti le modifiche a
Riga 9: | Riga 9: | ||
<pre> | <pre> | ||
# install lsb-release | # install lsb-release | ||
apt-get install lsb-release | |||
# install figlet to enable ASCII art | # install figlet to enable ASCII art | ||
apt-get install figlet | |||
# create directory | # create directory | ||
mkdir /etc/update-motd.d/ | mkdir /etc/update-motd.d/ | ||
Riga 23: | Riga 23: | ||
rm /etc/motd | rm /etc/motd | ||
</pre> | </pre> | ||
===Configurazione=== | ===Configurazione=== |
Versione delle 09:34, 9 ott 2017
Versioni Compatibili Debian 9 "stretch" |
Come rendere permanenti le modifiche a /etc/motd
Introduzione
Possiamo fare in modo che al momento del login via SSH o via terminale, Debian Stretch ci mostri alcune utili informazioni di sistema.
Per fare questo occorre installare alcuni pacchetti e modificare alcuni file.
Installazione
# install lsb-release apt-get install lsb-release # install figlet to enable ASCII art apt-get install figlet # create directory mkdir /etc/update-motd.d/ # change to new directory cd /etc/update-motd.d/ # create dynamic files touch 00-header && touch 10-sysinfo && touch 90-footer # make files executable chmod +x /etc/update-motd.d/* # remove MOTD file rm /etc/motd