Home>Article>Operation and Maintenance> What to do if linux cannot use telnet

What to do if linux cannot use telnet

WBOY
WBOY Original
2022-05-23 18:19:35 7249browse

Solution: 1. Use "yum list telnet*" to list telnet related installation packages; 2. Use "yum install -y telnet-server" to install the telnet service; 3. Use "yum install -y telnet .*” to install the client.

What to do if linux cannot use telnet

#The operating environment of this tutorial: linux7.3 system, Dell G3 computer.

What to do if telnet cannot be used in Linux

The following prompt message appears when using the command

[root@VM-0-10-centos ~]# telnet 115.159.101.39 80 -bash: telnet: 未找到命令

Solution:

Install related dependent plug-ins

1. List telnet related installation packages

yum list telnet*

2. Install telnet service

yum install -y telnet-server

What to do if linux cannot use telnet

3. Install the telnet client

yum install -y telnet.*

Verify whether it is available

[root@VM-0-10-centos ~]# telnet 115.159.101.39 80 Trying 115.159.101.39... Connected to 115.159.101.39. Escape character is '^]'.

After verification, install the relevant dependent plug-in packages. You can use this command.

Recommended learning:Linux video tutorial

The above is the detailed content of What to do if linux cannot use telnet. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn