除了登录 Ubuntu 之外,如何显示系统信息?

除了登录 Ubuntu 之外,如何显示系统信息?

当登录Ubuntu终端时,我可以看到以下系统信息:

Welcome to Ubuntu 14.04.3 LTS (GNU/Linux 3.19.0-25-generic x86_64)

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

  System information as of Fri May 13 13:00:37 EDT 2016

  System load:  0.16               Processes:           173
  Usage of /:   11.8% of 18.32GB   Users logged in:     0
  Memory usage: 10%                IP address for eth0: 192.168.80.130
  Swap usage:   0%

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

除了第一次登录外,还有其他方法可以在我使用这台机器时显示此信息吗?

答案1

这被称为“每日消息”。它是通过运行目录中的一组脚本生成的:/etc/update-motd.d
您可以在终端中输入此命令来重新运行这些脚本。

sudo run-parts /etc/update-motd.d/

有帮助的是,这将通知您是否有任何软件包有可用的更新或您的系统是否需要重新启动。

相关内容