web-dev-qa-db-ja.com

GUIターミナルを開くたびにTTYスクリプトを実行する

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することができますが、それはどのように将来的に保証されますか?

5
Fabby

少し遅いですが、パッケージ/更新情報を生成します。これをユーザー.bashrcファイルに追加します。

/usr/lib/update-notifier/apt-check --human-readable
4
stumblebee

出力全体は/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
2
muru