netstat command not found - Ubuntu 22.04

Page content

How to Install netstat Command on Ubuntu 22.04

In Ubuntu 22.04, the netstat command is no longer included by default in the base system. This command was commonly used to display network connections, routing tables, interface statistics, masquerade connections, and multicast memberships. However, it has been deprecated in favor of newer tools such as ss and ip that provide similar functionality in a more efficient way.

If you are accustomed to using netstat and would like to continue using it in Ubuntu 22.04, you can easily install it by following these steps:

  1. Open a terminal window.
  2. Run the following command to install net-tools, which includes the netstat command:
    sudo apt install net-tools
    

Once the installation is complete, you can use the netstat command as you normally would to view network information on your Ubuntu 22.04 system.

Conclusion

While the netstat command may have been deprecated in newer Linux distributions like Ubuntu 22.04, it is still possible to install and use it for those who prefer its familiar interface. However, it is recommended to familiarize yourself with the newer tools like ss and ip for better performance and compatibility with modern systems.