🌐

あれ!?netstatインストールできない!

2024/12/17に公開

はじめに

こんにちは。techfishです。普段は自宅サーバーの運用をしております。
今回は、netstatコマンドをインストールする方法を紹介します。
なぜこの記事を書こうと思ったのか。それは、自分も困ったからです。ハイ。

apt install netstatはエラーになる

root@server:~# apt install netstat
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
E: Unable to locate package netstat
root@server:~#

そうですね。netstatというパッケージはありません。
netstatは、net-toolsというパッケージに入っています。

apt install net-toolsこれが正解

root@server:~# apt install net-tools
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
The following NEW packages will be installed:
  net-tools
0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
Need to get 204 kB of archives.
After this operation, 819 kB of additional disk space will be used.
Get:1 http://archive.ubuntu.com/ubuntu jammy/main amd64 net-tools amd64 1.60+git20181103.0eebece-1ubuntu5 [204 kB]
Fetched 204 kB in 1s (155 kB/s)     
Selecting previously unselected package net-tools.
(Reading database ... 21247 files and directories currently installed.)
Preparing to unpack .../net-tools_1.60+git20181103.0eebece-1ubuntu5_amd64.deb ...
Unpacking net-tools (1.60+git20181103.0eebece-1ubuntu5) ...
Setting up net-tools (1.60+git20181103.0eebece-1ubuntu5) ...
Processing triggers for man-db (2.10.2-1) ...
root@server:~#

これでOKです。

root@server:~# netstat -help
usage: netstat [-vWeenNcCF] [<Af>] -r         netstat {-V|--version|-h|--help}
       netstat [-vWnNcaeol] [<Socket> ...]
       netstat { [-vWeenNac] -i | [-cnNe] -M | -s [-6tuw] }

        -r, --route              display routing table
        -i, --interfaces         display interface table
        -g, --groups             display multicast group memberships
        -s, --statistics         display networking statistics (like SNMP)
        -M, --masquerade         display masqueraded connections

        -v, --verbose            be verbose
        -W, --wide               don't truncate IP addresses
        -n, --numeric            don't resolve names
        --numeric-hosts          don't resolve host names
        --numeric-ports          don't resolve port names
        --numeric-users          don't resolve user names
        -N, --symbolic           resolve hardware names
...続く

できましたね。お疲れ様でした。

Discussion