Stretch Messaggio del giorno: differenze tra le versioni

Da Guide@Debianizzati.Org.
Vai alla navigazione Vai alla ricerca
Riga 10: Riga 10:
# install lsb-release  
# install lsb-release  
apt-get install lsb-release
apt-get install lsb-release
# install figlet to enable ASCII art
# install figlet to enable ASCII art
apt-get install figlet
apt-get install figlet
# create directory
# create directory
mkdir /etc/update-motd.d/
mkdir /etc/update-motd.d/
# change to new directory
# change to new directory
cd /etc/update-motd.d/
cd /etc/update-motd.d/
# create dynamic files
# create dynamic files
touch 00-header && touch 10-sysinfo && touch 90-footer
touch 00-header && touch 10-sysinfo && touch 90-footer
# make files executable
# make files executable
chmod +x /etc/update-motd.d/*
chmod +x /etc/update-motd.d/*
# remove MOTD file
# remove MOTD file
rm /etc/motd
rm /etc/motd

Versione delle 09:35, 9 ott 2017

Debian-swirl.png 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

Configurazione