web-dev-qa-db-ja.com

Ubuntuでログインメッセージを設定する方法

AWS UbuntuサーバーにSSH接続するたびに、システム情報メッセージが表示され、負荷、メモリ使用量、インストール可能なパッケージが次のように表示されます。

Welcome to Ubuntu 12.04.3 LTS (GNU/Linux 3.2.0-51-virtual x86_64)

 * Documentation:  https://help.ubuntu.com/

  System information as of Sun Nov 10 18:06:43 EST 2013

  System load:  0.08              Processes:           127
  Usage of /:   4.9% of 98.43GB   Users logged in:     1
  Memory usage: 69%               IP address for eth0: 10.236.136.233
  Swap usage:   100%

  Graph this data and manage this system at https://landscape.canonical.com/

13 packages can be updated.
0 updates are security updates.

Get cloud support with Ubuntu Advantage Cloud Guest
  http://www.ubuntu.com/business/services/cloud

Use Juju to deploy your cloud instances and workloads.
  https://juju.ubuntu.com/#cloud-precise
*** /dev/xvda1 will be checked for errors at next reboot ***

*** System restart required ***

私の質問は、そのメッセージはどのように作成されるのですか?どうすれば設定できますか?

11
Andres

このログインメッセージは、Ubuntuのlandscapeパッケージによって作成されます。個人的に言えば、それらは非常に迷惑であり、そのため、それらのパッケージをnukeするようにansibleを構成し、空白のログインメッセージを設定しました。

それを行うには:

$ apt-get remove landscape-client landscape-common 
$ rm -f /etc/motd && touch /etc/motd

空白が作成されます/etc/motd。カスタムログインメッセージを設定するには、必要に応じてそのファイルを編集します。

11
EEAA

私の場合、私は/etc/update-motd.d/51-cloudguest、それを読む:

#!/bin/sh
#
# This file is written by the Ubuntu image build process, it is not
# managed by a package.  If you want to avoid seeing this advertisement,
# then you can safely remove the file.
echo ""
echo "  Get cloud support with Ubuntu Advantage Cloud Guest:"
echo "    http://www.ubuntu.com/business/services/cloud"
echo ""
echo "  Use Juju to deploy your cloud instances and workloads:"
echo "    https://juju.ubuntu.com/#cloud-saucy"
6
airstrike