ubuntu和debian
Ubuntu is most used Linux distributions. Canonical provides enterprise support for Ubuntu desktops and servers. netstat
is easy to use tool for network operations. In this tutorial we will look how to solve netstat: command not found
error and install netstat
tool to the Ubuntu and Debian.
Ubuntu是最常用Linux发行版。 Canonical为Ubuntu台式机和服务器提供企业支持。 netstat
是易于使用的网络操作工具。 在本教程中,我们将研究如何解决netstat: command not found
错误,并将netstat
工具安装到Ubuntu和Debian。
搜索Netstat软件包 (Search Netstat Packages)
Ubuntu and Debian systems uses deb
packages which is managed with apt
online package manager. We will use apt
to search netstat
related package.
Ubuntu和Debian系统使用由apt
在线软件包管理器管理的deb
软件包。 我们将使用apt
搜索与netstat
相关的软件包。
$ apt search netstat
使用Net-Tools软件包安装Netstat(Install Netstat with Net-Tools Package)
As we see in previous step netstat
search listed a lot of package names. The package which provides netstat
command is net-tools
and we will install is with apt install
.
正如我们在上一步中看到的, netstat
搜索列出了很多软件包名称。 提供netstat
命令的软件包是net-tools
,我们将使用apt install
。
$ sudo apt install net-tools
Netstat的替代品 (Alternatives of Netstat)
If we need or want to check alternative to the netstat
we can look following commands.
如果我们需要或想要检查netstat
替代方法,我们可以查看以下命令。
什么是Netstat-Nat软件包 (What is Netstat-Nat Package)
When searching for netstat
command apt
will list netstat-nat
package which provides network related commands focused on NAT . We can get detailed information about netstat-nat
package with the following command.
当搜索netstat
命令时, apt
将列出netstat-nat
软件包,该软件包提供了与NAT相关的网络相关命令。 我们可以使用以下命令获取有关netstat-nat
软件包的详细信息。
$ apt show netstat-nat
翻译自: https://www.poftut.com/debian-ubuntu-netstat-command-not-found-error-solution-netstat-installation/
ubuntu和debian