Ubuntu 14.04.2 LTSのベースインストールで、必要なメッセージをドロップするだけです。
/etc/motd
デフォルトでは、MOTDは他の動的MOTDコンテンツの最後に表示されます。たとえば、/ etc / motdファイルが追加されたVagrant ubuntu / trusty64(v20150506.0.0)ボックスからの出力は次のとおりです。
$ vagrant ssh
Welcome to Ubuntu 14.04.2 LTS (GNU/Linux 3.13.0-52-generic x86_64)
* Documentation: https://help.ubuntu.com/
System information as of Thu May 14 20:06:56 UTC 2015
System load: 0.39 Processes: 78
Usage of /: 2.8% of 39.34GB Users logged in: 0
Memory usage: 24% IP address for eth0: 10.0.2.15
Swap usage: 0%
Graph this data and manage this system at:
https://landscape.canonical.com/
Get cloud support with Ubuntu Advantage Cloud Guest:
http://www.ubuntu.com/business/services/cloud
0 packages can be updated.
0 updates are security updates.
#####################################
Howdy! This message is from /etc/motd
#####################################
Last login: Thu May 14 20:06:56 2015 from 10.0.2.2
vagrant@vagrant-ubuntu-trusty-64:~$
デフォルト設定のシステムで作業している場合は、これですべてです。
その他のトラブルシューティングのメモ:
「/ etc / motd」の使用は、以前のバージョンからの変更点です。12.02の推奨事項は、「/ etc / motd.tail」を使用することでした。14.04.2では機能しません。
私が見た他の推奨事項には、「/ etc / ssh / sshd_config」のいくつかの値の変更が含まれます。これらが変更された場合、機能するデフォルトは次のとおりです。
UsePAM yes
PrintMotd no
同様に、/etc/pam.d/login
これが私が参照したことのあるデフォルトのデフォルトです。
session optional pam_motd.so motd=/run/motd.dynamic noupdate
session optional pam_motd.so
これが、トラブルシューティングのために参照したものです。
sudo run-parts /etc/update-motd.d/
予想情報を表示しますか?