TTYにログインすると、次のナイステキストが表示されます。
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
adm
グループのすべてのユーザーのGUIターミナルを開くたびに最後の2行を繰り返すようにします(ただし、すべてのユーザーのGUIターミナルを開くたびにすべてが表示されます)
私は明白なことを試しました:
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
$
私は何が欠けていますか?
追伸明らかにファイルをchmod o+r
することができますが、それはどのように将来的に保証されますか?
少し遅いですが、パッケージ/更新情報を生成します。これをユーザー.bashrc
ファイルに追加します。
/usr/lib/update-notifier/apt-check --human-readable
出力全体は/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
したがって、.bashrc
に以下を追加できます。
[[ -r /run/motd.dynamic ]] && cat /run/motd.dynamic
または:
[[ -r /run/motd.dynamic ]] && grep update /run/motd.dynamic