Amazon-Ec2
如何顯示 EC2 實例摘要報告?
通過 SSH 連接到 EC2 實例後,我得到了一份不錯的摘要報告 - 您可以在下面找到該報告。是否可以使用命令顯示此報告?
➜ ~ ssh ... Warning: the ECDSA host key for 'example.net' differs from the key for the IP address '12.34.56.78' Offending key for IP in /home/user/.ssh/known_hosts:30 Matching host key in /home/user/.ssh/known_hosts:66 Are you sure you want to continue connecting (yes/no)? yes Welcome to Ubuntu 16.04.1 LTS (GNU/Linux 4.4.0-59-generic x86_64) * Documentation: https://help.ubuntu.com * Management: https://landscape.canonical.com * Support: https://ubuntu.com/advantage System information as of Mon Feb 6 10:03:28 UTC 2017 System load: 0.66 Processes: 155 Usage of /: 43.0% of 49.08GB Users logged in: 0 Memory usage: 1% IP address for eth0: 172.12.34.56 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 10 packages can be updated. 10 updates are security updates. *** System restart required *** Last login: Mon Feb 6 09:20:51 2017 from 31.19.89.2 ubuntu@ip-172-12-34-56:~$
據我所知,“報告”是傳統 MOTD(每日消息)登錄消息的特定於 Ubuntu 的動態版本,使用
update-motd
.您可以通過閱讀文件來訪問該報告
/var/run/motd
從手冊:
UNIX/Linux 系統管理員經常通過維護文件中的文本與控制台和遠端使用者交流重要資訊,該文件
/etc/motd
由 pam_motd(8) 模組在互動式 shell 登錄時顯示。傳統上,此文件是靜態文本,通常由發行版安裝,僅在版本升級時更新,或由本地管理員用相關資訊覆蓋。
Ubuntu 引入了 update-motd 框架,通過該框架,motd(5) 在登錄時從一組腳本動態組裝。
中的可執行腳本
/etc/update-motd.d/*
由 pam_motd(8) 在每次登錄時以 root 使用者身份執行,並且此資訊連接在/var/run/motd
.