linux – “-bash:telnet:command not found”错误?

前端之家收集整理的这篇文章主要介绍了linux – “-bash:telnet:command not found”错误?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有以下服务运行:
sshd            0:off   1:off   2:on    3:on    4:on    5:on    6:off
syslog          0:off   1:off   2:on    3:on    4:on    5:on    6:off
tcsd            0:off   1:off   2:off   3:off   4:off   5:off   6:off
vsftpd          0:off   1:off   2:on    3:on    4:on    5:on    6:off
xinetd          0:off   1:off   2:off   3:on    4:on    5:on    6:off

xinetd based services:
        chargen-dgram:  off
        chargen-stream: off
        daytime-dgram:  off
        daytime-stream: off
        discard-dgram:  off
        discard-stream: off
        echo-dgram:     off
        echo-stream:    off
        tcpmux-server:  off
        telnet:         on
        time-dgram:     off
        time-stream:    off

为什么我仍然有“-bash:telnet:command not found”错误

谢谢

解决方法

RHEL / CentOS 5.4 telnet客户端安装在/usr/kerberos / bin / telnet.因此,您的$PATH变量需要列出/usr/kerberos / bin. (最好在/usr/bin之前)如果由于某种原因你没有安装该文件,它就是krb5-workstation软件包的一部分.手动或通过YUM安装该软件包应该可以满足您的需求.

您可以快速查看telnet,看看它是否在您的路径中的任何位置找到. echo $PATH查看正在检查的目录,以及rpm -q krb5-workstation以查看是否安装了该软件包.

– 克里斯托弗卡雷尔

原文链接:https://www.f2er.com/linux/400328.html

猜你在找的Linux相关文章