当前位置: 代码迷 >> 综合 >> Start the Centos 8 experience journey
  详细解决方案

Start the Centos 8 experience journey

热度:89   发布时间:2023-12-14 23:30:23.0

Start the Centos 8 experience journey

  • Tips 1

Tips 1

每次进入Centos 8系统,都会有如下的提示:

lwk@qwfys:~$ ssh root@172.16.154.168 Activate the web console with: systemctl enable --now cockpit.socketLast login: Mon Jun 15 10:53:00 2020 from 172.16.154.164
[root@harbin ~]# 

提示的意思是说,通过命令systemctl enable --now cockpit.socket可以开启一个基于Web的系统控制台,后续管理主机的时候,通过这个web控制台,也是可以管理系统的。

那么,我们有没有办法取消这个提示呢?我们知道通常情况下,Centos系统的文本登录界面中的提示信息是存放在文件/etc/motd或者目录/etc/motd.d/中的,那么,我们来找一下看看吧。

[root@harbin ~]# ll /etc/motd.d/
total 12
drwxr-xr-x.  2 root root   21 Feb 18 15:59 .
drwxr-xr-x. 97 root root 8192 Jun 15 11:00 ..
lrwxrwxrwx.  1 root root   17 Nov  9  2019 cockpit -> /run/cockpit/motd
[root@dph000 ~]# cat /etc/motd.d/cockpit 
Activate the web console with: systemctl enable --now cockpit.socket[root@harbin ~]#

我们可以看到,文本Activate the web console with: systemctl enable --now cockpit.socket信息是存放在软连接文件/etc/motd.d/cockpit对应的文件中的,既然如此,那么,我们只要删除这个软链接文件,然后重新登录即可取消上述提示。

[root@harbin motd.d]# rm -rf cockpit 
[root@harbin motd.d]# exit
logout
Connection to 172.16.154.168  closed.
lwk@qwfys:~$ ssh root@172.16.154.168 Last login: Mon Jun 15 17:14:54 2020 from 172.16.154.164
[root@harbin ~]#
  相关解决方案