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.
このメッセージを隠したいです。これを行うには、どのファイルを編集する必要がありますか?
答え1
最後の2つのセグメントは次の場所に保存されます。/etc/motd
;名前を変更または削除すると、簡単に削除できます。
$ cd /etc
$ sudo mv motd motd.old
最初の行/etc/update-motd.d/10-uname
は;で指定されます。削除したり、別のディレクトリに移動したりすることもできます(隠す必要はありません)。
答え2
Motd(今日のメッセージ)サービスです。 Ubuntuでは無効にすることができます
systemctl stop motd-news.timer
systemctl disable motd-news.timer
私はDebianの経験はあまりありませんが、同じか非常に似ていると確信しています。