在Ubuntu 20.04中禁用motd欢迎消息

2023-04-25 19:21:10 浏览数 (1)

本篇文章重点讲解一下在Ubuntu 20.04中禁用motd欢迎消息具体方法,有需要的小伙伴可以参考一下。

Ubuntu 使用的是update-motd,它是一个动态 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 中。

如何查看当前脚本?

脚本存放的位置在/etc/update-motd.d目录中:

代码语言:javascript复制
bob@ubuntu-20-04:~$ ls -l /etc/update-motd.d/ 
total 44 
-rwxr-xr-x 1 root root 1220 4月   9  2018 00-header 
-rwxr-xr-x 1 root root 1157 4月   9  2018 10-help-

如何在 /etc/update-motd.d/ 目录中创建我自己的脚本?

只需创建一个 shell 脚本,名称自定义,名称前面的序号根据需要填写,数字越大优先级越低。如下所示:

代码语言:javascript复制
bob@ubuntu-20-04:~ sudo touch /etc/update-motd.d/99-custom-msg bob@ubuntu-20-04:~ sudo vim /etc/update-motd.d/99-custom-msg Hello Ubuntu 20-04
text
-rwxr-xr-x 1 root root 5023 8月  17  2020 50-motd-news 
-rwxr-xr-x 1 root root   96 6月  19  2020 85-fwupd 
-rwxr-xr-x 1 root root  218 4月   2  2020 90-updates-available 
-rwxr-xr-x 1 root root  374 7月  18  2020 91-release-upgrade 
-rwxr-xr-x 1 root root  165 2月  17  2020 92-unattended-upgrades 
-rwxr-xr-x 1 root root  129 11月 12  2018 95-hwe-eol 
-rwxr-xr-x 1 root root  142 11月 12  2018 98-fsck-at-reboot 
-rwxr-xr-x 1 root root  144 11月 12  2018 98-reboot-required

可以随便看一个脚本文件的内容:

bob@ubuntu-20-04:~$ cat /etc/update-motd.d/00-header

如何禁用脚本?

如果要禁用所有脚本,请运行以下命令:

bob@ubuntu-20-04:~$ sudo chmod -R 644 /etc/update-motd.d/ 如果要禁用单个脚本,请运行以下命令:

bob@ubuntu-20-04:~$ sudo chmod -x /etc/update-motd.d/00-header

如何在 /etc/update-motd.d/ 目录中创建我自己的脚本?

只需创建一个 shell 脚本,名称自定义,名称前面的序号根据需要填写,数字越大优先级越低。如下所示:

bob@ubuntu-20-04:~$ sudo touch /etc/update-motd.d/99-custom-msg

bob@ubuntu-20-04:~$ sudo vim /etc/update-motd.d/99-custom-msg

Hello Ubuntu 20-04

添加可执行权限:

bob@ubuntu-20-04:~$ sudo chmod x /etc/update-motd.d/99-custom-msg

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:zbxhhzj@qq.com进行举报,并提供相关证据,查实之后,将立刻删除涉嫌侵权内容。 转载本站文章请保留原文链接,如文章内说明不允许转载该文章,请不要转载该文章,谢谢合作。

0 人点赞