What to do if linux cannot use telnet

WBOY
Release: 2022-05-23 18:19:35
Original
7368 people have browsed it

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: 未找到命令
Copy after login

Solution:

Install related dependent plug-ins

1. List telnet related installation packages

yum list telnet*
Copy after login

2. Install telnet service

yum install -y telnet-server
Copy after login

What to do if linux cannot use telnet

3. Install the telnet client

yum install -y telnet.*
Copy after login

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 '^]'.
Copy after login

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!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template