termshark command not found

In this troubleshooting guide we learn how to fix termshark command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

termshark: command not found

or when using sudo you get the following error message

sudo: termshark: command not found

Solutions to termshark: command not found

How To Fix termshark: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu termshark is provided by termshark package.

termshark is:

If you’re debugging on a remote machine with a large pcap and no desire to scp it back to your desktop, termshark can help!

Features: • Read pcap files or sniff live interfaces (where tshark is permitted) • Inspect each packet using familiar Wireshark-inspired views • Filter pcaps or live captures using Wireshark’s display filters • Copy ranges of packets to the clipboard from the terminal • Written in Go, compiles to a single executable on each platform

To fix this problem, we can install more using the command below.

sudo apt-get -y install termshark

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install termshark.

sudo apt -y install termshark

Or if you have aptitude installed you can use the following command.

sudo aptitude install termshark

Summary

In this tutorial we learn how to fix termshark command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.