答案1
如果我理解这篇文章,您只是要求通过 SSH 更改登录提示。
sshd
sshd 在 /etc/ssh/sshd_config 中有自己的选项“?PrintMotd”。默认为“yes”,但在 Debian 的默认配置中设置为“no”,因为否则您将获得 motd 两次:一次由 pam_motd 打印,第二次由 sshd 本身打印。请注意,motd 不会在多路复用 ssh 连接上显示,仅在也进行身份验证的“第一个”会话上显示。 [1]:https://wiki.debian.org/motd#A.2Fetc.2Fmotd_in_current_versions_.288.2B-.29_of_Debian
或者
/etc/问题
登录提示之前显示的文本存储在 /etc/issue 中(有一个相关文件 /etc/issue.net,显示为前用户在 shell 启动之前登录)。它只是一个普通的文本文件,但它接受 TTY 转义序列:
问题文件可以包含某些字符序列来显示各种信息。所有问题序列均由反斜杠 () 组成,后跟下面解释的字母之一(因此 /etc/issue 中的 \d 将插入当前日期)。
\b -- Baudrate of the current line.
\d -- Current date.
\s -- System name, the name of the operating system.
\l -- Name of the current tty line.
\m -- Architecture identifier of the machine, eg. i486
\n -- Nodename of the machine, also known as the hostname.
\o -- Domainname of the machine.
\r -- Release number of the OS, eg. 1.1.9.
\t -- Current time.
\u -- Number of current users logged in.
\U -- The string "1 user" or " users" where is the number of current users logged in.
\v -- Version of the OS, eg. the build-date etc.