Configuration

如何隱藏/禁用預先提示消息?

  • August 27, 2019

當我們啟動一個 GNU/linux 系統時,它會在標準輸出上顯示很多消息。然後,就在提示之前,它顯示如下內容:

Linux raspberrypi 4.19.66-v7+ #1253 SMP Thu Aug 15 11:49:46 BST 2019 armv7l

The programs included with the Debian GNU/Linux system are free software;
the exact distribution terms for each program are described in the
individual files in /usr/share/doc/*/copyright.

Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
permitted by applicable law.

我想隱藏該消息。我需要編輯哪個文件才能完成此操作?

最後兩段儲存在/etc/motd; 您只需重命名或刪除它即可擺脫它們:

$ cd /etc
$ sudo mv motd motd.old

第一行在/etc/update-motd.d/10-uname; 您也可以將其刪除,或將其移動到另一個目錄(使其隱藏不起作用)。

這是 Motd(每日消息)服務。在 Ubuntu 中,您可以禁用它

systemctl stop motd-news.timer
systemctl disable motd-news.timer

我對 Debian 沒有太多經驗,但我敢打賭它是相同或非常相似的。

引用自:https://unix.stackexchange.com/questions/537677