우분투에서 로그인 메시지를 구성하는 방법은 무엇입니까?


11

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

이 로그인 메시지는 우분투 landscape패키지에 의해 생성됩니다 . 개인적으로 말하면, 그들은 상당히 성가신 것으로 생각되며, 패키지를 핵 공격하고 빈 로그인 메시지를 설정할 수 있도록 구성했습니다.

하기 위해서:

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

빈칸을 만듭니다 /etc/motd. 사용자 정의 로그인 메시지를 설정하려면 원하는대로 해당 파일을 편집하십시오.


@EEAA 감사합니다. 도움이되었습니다. 아마 당신은 관련 질문 serverfault.com/questions/554021/…에
Andres

@Andres 죄송합니다. 모르겠습니다. 내 대답에서 언급했듯이 이러한 로그인 메시지를 비활성화합니다. CPU 또는 메모리와 관련된 문제가 있는지 모니터링 시스템에서 알려줍니다.
EEAA

6

내 경우에는을 지우 /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"

"지워야한다"는 것이 정확히 무슨 뜻입니까? '51 -cloudguest '파일을 완전히 삭제하거나 파일의 전체 내용을 삭제합니까?
PeterCo

1
IIRC 나는 파일을 남겨두고 내용을 삭제했다
airstrike

헤더에 "이 광고를 보지 않으려면 파일을 안전하게 제거 할 수 있습니다."
PeterCo

@PeterCo 박람회에 충분합니다. 나는이 상처를 여전히 같은 결과를 달성 할 것이다 그것을 유지하는 생각 생각
공습
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.