Mac 安装 Telnet 工具

方案一

通过 brew install telnet 时会要求安装 xcode

安装命令

bash 复制代码
 brew install telnet

报错信息:

bash 复制代码
Warning: No remote 'origin' in /usr/local/Homebrew/Library/Taps/homebrew/homebrew-services, skipping update!
Running `brew update --auto-update`...
==> Auto-updated Homebrew!
Updated 3 taps (homebrew/cask-versions, homebrew/core and homebrew/cask).

You have 11 outdated formulae installed.
You can upgrade them with brew upgrade
or list them with brew outdated.

Warning: You are using macOS 11.
We (and Apple) do not provide support for this old version.
You will encounter build failures with some formulae.
Please create pull requests instead of asking for help on Homebrew's GitHub,
Twitter or any other official channels. You are responsible for resolving
any issues you experience while you are running this
old version.

telnet: A full installation of Xcode.app is required to compile
this software. Installing just the Command Line Tools is not sufficient.

Xcode can be installed from the App Store.
Error: telnet: An unsatisfied requirement failed this build.

如果出现以上错误,我们可以使用方案二

方案二

从 GNU 的 FTP 服务器下载 inetutils 源代码并编译安装 Telnet 是一个可行的方法。以下是详细的步骤来完成这个过程:

步骤 1: 下载 inetutils 源码

网页访问可以查看所有版本列表

bash 复制代码
https://ftp.gnu.org/gnu/inetutils/
  1. 打开终端。

  2. 使用 curl 或者 wget 命令下载你选择的版本,例如 inetutils-2.3.tar.xz:

    sh 复制代码
    curl -O https://ftp.gnu.org/gnu/inetutils/inetutils-2.3.tar.xz

    或者如果你更喜欢使用 wget

    sh 复制代码
    wget https://ftp.gnu.org/gnu/inetutils/inetutils-2.3.tar.xz

步骤 2: 解压源码包

  1. 安装 xz 工具(如果还没有安装)以便解压 .xz 文件:

    sh 复制代码
    brew install xz  # 如果你不想用 Homebrew,可以手动安装 xz 工具
  2. 解压文件:

    sh 复制代码
    tar -xvf inetutils-2.3.tar.xz
  3. 进入解压后的目录:

    sh 复制代码
    cd inetutils-2.3

步骤 3: 编译和安装 inetutils

  1. 配置编译选项。你可以通过运行 ./configure --help 来查看所有可用选项。这里我们使用默认配置:

    sh 复制代码
    ./configure
  2. 编译源码:

    sh 复制代码
    make
  3. 以管理员权限安装 inetutils(包括 Telnet):

    sh 复制代码
    sudo make install

步骤 4: 验证安装

  1. 在终端中输入 telnet 命令来检查是否成功安装了 Telnet 客户端。如果一切正常,你应该能看到 Telnet 的帮助信息或提示。

注意事项

  • 在执行 sudo make install 之前,请确保你知道自己在做什么,因为这会将 inetutils 安装到系统路径中,可能会影响现有的工具。
  • 如果你不希望覆盖系统的其他工具,或者想要保持安装的整洁,你可以考虑指定安装路径,比如 ./configure --prefix=/usr/local/inetutils,然后相应地调整你的 PATH 环境变量。
  • 请记得定期更新和维护你自己编译安装的软件,以确保它们的安全性和稳定性。

以上就是从源码安装 Telnet 的完整步骤。这样安装的 Telnet 可以作为日常使用的客户端。

相关推荐
追光天使15 小时前
Mac M1 源码安装FFmpeg,开启enable-gpl 和 lib x264
macos·ffmpeg
会飞的爱迪生16 小时前
mac和linux传输文件
linux·运维·macos
数据的世界011 天前
解决.NET程序通过网盘传到Linux和macOS不能运行的问题
linux·运维·服务器·macos
wn5311 天前
【浏览器 - Mac实时调试iOS手机浏览器页面】
前端·macos·ios·智能手机·浏览器
shichen5012 天前
MacOS 如何映射快捷键
macos·mac·策略模式
一丝晨光3 天前
Cocoa和Cocoa Touch是什么语言写成的?什么是Cocoa?编程语言中什么是框架?为什么苹果公司Cocoa类库有不少NS前缀?Swift编程语言?
macos·ios·objective-c·cocoa·swift·uikit·cocoa touch
程序媛-徐师姐3 天前
解决MacOS安装软件时提示“打不开xxx软件,因为Apple无法检查其是否包含恶意软件”的问题
macos·无法检查其是否包含恶意软件·打不开xxx软件
会飞的爱迪生4 天前
mac安装dockerdesktop优化
macos
刘贤松4 天前
Mac Electron 应用签名(signature)和公证(notarization)
javascript·macos·electron
狂奔solar4 天前
Titans 架构下MAC变体的探究
macos·架构