M2 Macでtelnetを使えるようにした
最近Macに乗り換えたのですが、ターミナルからtelnetを使おうとすると
zsh: command not found: telnet
と表示されます。
RTX1200の操作に必要そうだったので、使えるようにしてみました。
homebrewをインストール
telnetをインストールする前に、homebrewをインストールします。
homebrewとは、OS上でソフトウェアのパッケージの管理を行うためのソフトウェアツールで、コマンドラインからソフトウェアのインストール、アップデート、アンインストールなどを簡単に行うことができます。
ラズパイでライブラリをインストールするときに使うpipみたいなもんですね。
次のコマンドでインストールします。
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
インストールは成功しましたが、次のようなログが出ました。
Warning: /opt/homebrew/bin is not in your PATH.
Instructions on how to configure your shell for Homebrew
can be found in the 'Next steps' section below.
==> Installation successful!
==> Homebrew has enabled anonymous aggregate formulae and cask analytics.
Read the analytics documentation (and how to opt-out) here:
https://docs.brew.sh/Analytics
No analytics data has been sent yet (nor will any be during this install run).
==> Homebrew is run entirely by unpaid volunteers. Please consider donating:
https://github.com/Homebrew/brew#donations
==> Next steps:
- Run these two commands in your terminal to add Homebrew to your PATH:
(echo; echo 'eval "$(/opt/homebrew/bin/brew shellenv)"') >> /Users/ryonosuke/.zprofile
eval "$(/opt/homebrew/bin/brew shellenv)"
- Run brew help to get started
- Further documentation:
https://docs.brew.sh
どうやらPATHが通ってないからNext stepsに書いていることをやれと言っているようです。
ということで、それに従って実行していきます。
echo 'eval "$(/opt/homebrew/bin/brew shellenv)"'
eval "$(/opt/homebrew/bin/brew shellenv)"
brew doctorと打って問題ないか確認してみましょう。
ryonosuke@ ~ % brew doctor
Your system is ready to brew.
問題ないようです。
telnetのインストール
homebrewが問題なくインストールできたら、本命のtelnetをインストールします。
brew install telnet
telnetで無事接続できるようになりました。
ryonosuke@ ~ % telnet 192.168.100.1
Trying 192.168.100.1...
Connected to 192.168.100.1.
Escape character is '^]'.