How To

How To Install Telnet on Alpine Linux

Alpine Linux is a security-oriented, lightweight Linux distribution based on musl libc and busybox. It is an operating system designed for use with microservices. Its security, simplicity, and resource efficiency has been a catalyst in its adoption. The base OS is minimal with few packages only required to boot the system.

Original content from computingforgeeks.com - post 75630

In this guide. I’ll show you how to install Telnet on Alpine Linux. This article has been written with the assumption that you already have a running Alpine Linux system. You can confirm telnet is not available on Alpine Linux by default.

/ # telnet
/bin/sh: telnet: not found

As of Alpine Linux version 3.7, the telnet package was moved into busybox-extras subpackage.

Install Telnet on Alpine Linux

Update the system for busybox-extras subpackage to be visible.

/ # sudo apk update
fetch http://alpinelinux.mirrors.ovh.net/v3.21/main/x86_64/APKINDEX.tar.gz
fetch http://alpinelinux.mirrors.ovh.net/v3.21/community/x86_64/APKINDEX.tar.gz
v3.21.3-186-g550b0ecd650 [http://alpinelinux.mirrors.ovh.net/v3.21/main]
v3.21.3-188-g50056faa876 [http://alpinelinux.mirrors.ovh.net/v3.21/community]
OK: 25395 distinct packages available

Install Telnet on Alpine Linux through busybox-extras package:

# sudo apk add busybox-extras
(1/1) Installing busybox-extras (1.37.0-r12)
Executing busybox-extras-1.37.0-r12.post-install
Executing busybox-1.37.0-r12.trigger
OK: 135 MiB in 59 packages

Check if telnet command is now available on Alpine Linux.

/ # telnet
BusyBox v1.37.0 (2025-01-17 18:12:01 UTC) multi-call binary.

Usage: telnet [-a] [-l USER] HOST [PORT]

Connect to telnet server

	-a	Automatic login with $USER variable
	-l USER	Automatic login as USER

Enjoy using Telnet to test connectivity on Alpine Linux.

busybox-extras telnet 172.21.200.10 80

More articles on Alpine Linux:

Related Articles

Debian Fix “apt-key is deprecated. Manage keyring files in trusted.gpg.d instead” Cheat Sheets Top Linux File Management commands cheat sheet FreeBSD Install Bashtop – Terminal Resource Monitor for Linux | macOS | FreeBSD macos How To Configure Fish Shell with Oh My Fish

Leave a Comment

Press ESC to close