Lorsque je me connecte à un téléscripteur, le texte Nice suivant s'affiche:
Ubuntu 16.04.03 LTS
Log-in: username
Password:
Last log-in date/time
Welcome to Ubuntu 16.04.03 LTS
* Documentation:
* Management:
* Support:
9 packages to update
4 updates are security updates
Je voudrais que les deux dernières lignes soient répétées à chaque fois que j'ouvre un terminal graphique pour tous les utilisateurs du groupe adm
(mais que le tout soit affiché à chaque fois que j'ouvre un terminal graphique pour tous les utilisateurs)
J'ai essayé l'évidence:
fab-root@fab-ux-predator:~
$ cd /etc/update-motd.d/
fab-root@fab-ux-predator:/etc/update-motd.d
$ ./90-updates-available
fab-root@fab-ux-predator:/etc/update-motd.d
$ cat /var/lib/update-notifier/updates-available
cat: /var/lib/update-notifier/updates-available: Permission denied
fab-root@fab-ux-predator:/etc/update-motd.d
$
Qu'est-ce qui me manque?
P.S. Évidemment, je peux chmod o+r
le fichier, mais dans quelle mesure serait-il à l'épreuve du temps?
C'est un peu lent mais cela va générer les informations de paquet/mise à jour. Ajoutez ceci au fichier users .bashrc
:
/usr/lib/update-notifier/apt-check --human-readable
La sortie entière est en /run/motd.dynamic
:
$ grep motd /etc/pam.d -R
/etc/pam.d/sshd:# This includes a dynamically generated part from /run/motd.dynamic
/etc/pam.d/sshd:# and a static (admin-editable) part from /etc/motd.
/etc/pam.d/sshd:session optional pam_motd.so motd=/run/motd.dynamic
/etc/pam.d/sshd:session optional pam_motd.so noupdate
/etc/pam.d/login:# This includes a dynamically generated part from /run/motd.dynamic
/etc/pam.d/login:# and a static (admin-editable) part from /etc/motd.
/etc/pam.d/login:session optional pam_motd.so motd=/run/motd.dynamic
/etc/pam.d/login:session optional pam_motd.so noupdate
Donc, dans votre .bashrc
, vous pouvez ajouter:
[[ -r /run/motd.dynamic ]] && cat /run/motd.dynamic
Ou:
[[ -r /run/motd.dynamic ]] && grep update /run/motd.dynamic