如何在 ubuntu 上启用白天服务

如何在 ubuntu 上启用白天服务

我在我的机器上发现了以下信息

user@ubuntu:/etc/xinetd.d$ cat daytime
# default: off
# description: An internal xinetd service which gets the current system time
# then prints it out in a format like this: "Wed Nov 13 22:30:27 EST 2002".
# This is the tcp version.
service daytime
{
    disable     = yes
    type        = INTERNAL
    id      = daytime-stream
    socket_type = stream
    protocol    = tcp
    user        = root
    wait        = no
}                                                                               

# This is the udp version.
service daytime
{
    disable     = yes
    type        = INTERNAL
    id      = daytime-dgram
    socket_type = dgram
    protocol    = udp
    user        = root
    wait        = yes
} 

问题:

如何开通白天服务?

// 更新 // 我在执行步骤 2 时遇到了问题

步骤1:

sudo aptitude 安装 xinetd

步骤 2:接下来,您需要通过编辑 /etc/xinetd.d 中的配置文件来启用 daytime 和 echo 服务(您只需将禁用选项从是更改为否)

步骤3: sudoinvoke-rc.d xinetd reload

答案1

/etc/xinetd.d/*只有 root 才可写入。您可以将其复制到您的主目录 ( cp /etc/xinetd.d/daytime ~),编辑它,然后使用 root 权限将其复制回来 ( sudo cp ~/daytime /etc/xinetd.d)。或者,您可以使用您信任的编辑器在现场编辑它,以便以 root 身份运行,例如。sudo someeditor /etc/xinetd.d/daytime

相关内容