Question No telnet no yum

Jacek

New Pleskian
Hi, I need to telnet yahoo server to troubleshoot why my mails are rejected by them. But I can't either telnet on root, or user or install telnet by yum. On both I have "command not recognized"
 
Well, depending on your Linux distribution you'll have to use either one of those to install telnet:
Code:
apt install telnet
or
Code:
dnf install telnet
or
Code:
yum install telnet

You'll have to figure out which Linux distribution you have so that you'll know in the future whether to use apt or yum or dnf....
 
Last edited:
Hi! I've know this convo dates back a while now.. but I'm trying to install telnet and I get this error message.. any clues?
thx

Errors during downloading metadata for repository 'mariadb':
- Curl error (28): Timeout was reached for https://mirror.its.dal.ca/mariadb/yum/10.6/rhel/8/x86_64/repodata/repomd.xml [Connection timed out after 30000 milliseconds]
Error: Failed to download metadata for repo 'mariadb': Cannot download repomd.xml: Cannot download repodata/repomd.xml: All mirrors were tried
 
@leopixelstudios , that looks like a connectivity issue with the MariaDB repository mirrors. What you can try is to temporarily disable the repository:

Code:
dnf install telnet --disablerepo=mariadb

or you can update the repository source in /etc/yum.repos.d/MariaDB.repo.
 
Back
Top