Star Hype News.

Premium celebrity moments with standout appeal.

general

How to install a telnet client?

By James Williams

How can we install a telnet client in Ubuntu 16.04? With this command, we can install a telnet server:

sudo apt-get install xinetd telnetd

But can a telnet client be installed without a telnet server? A telnet server can be dangerous.

0

3 Answers

apt-get update
apt-get install telnet

This is a valid question BTW. Do not install the telnet server, ever. Also the telnet client is not included by default in many distros. For instance it is very common in docker-land to face the need of installing several tools that are taken otherwise for granted. For example, Official OS docker images most likely will be shipped with a shell and its built-ins. Telnet will not be shipped in any of those.

6

A lot of docker images don't come with standard tools like vim, ping & telnet. You may need to install them explicitly.

sudo apt-get update && apt-get install telnet
2

You shouldn't need to install any packages; a telnet client should come standard with Ubuntu. Just open a terminal window (Alt + Ctrl + T) and use the telnet command (for help, type man telnet)

2

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy