ipv6logstats command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
ipv6logstats: command not found
or when using sudo you get the following error message
sudo: ipv6logstats: command not found
Solutions to ipv6logstats: command not found
How To Fix ipv6logstats: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu ipv6logstats is provided by ipv6calc package.
ipv6calc is:
The ipv6calc utility can convert between different formats of IPv4 or IPv6 addresses. It can also show information about the addresses, including who they are assigned to on the Internet.
To fix this problem, we can install more using the command below.
sudo apt-get -y install ipv6calc
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install ipv6calc.
sudo apt -y install ipv6calc
Or if you have aptitude installed you can use the following command.
sudo aptitude install ipv6calc
Summary
In this tutorial we learn how to fix ipv6logstats command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.