How To Install tcpick on CentOS 8

tcpick is A tcp stream sniffer, tracker and capturer

Introduction

In this tutorial we learn how to install tcpick on CentOS 8.

What is tcpick

tcpick is a textmode sniffer that can track tcp streams and saves the data captured in files or displays them in the terminal. Useful for picking files in a passive way. It can store all connections in different files, or it can display all the stream on the terminal. It is useful to keep track of what users of a network are doing, and is usable with textmode tools like grep, sed and awk. It can handle eth and ppp interfaces.

We can use yum or dnf to install tcpick on CentOS 8. In this tutorial we discuss both methods but you only need to choose one of method to install tcpick.

Install tcpick on CentOS 8 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

The output should look something like this:

CentOS Linux 8 - AppStream                                       43 kB/s | 4.3 kB     00:00    
CentOS Linux 8 - BaseOS                                          65 kB/s | 3.9 kB     00:00    
CentOS Linux 8 - ContinuousRelease                               43 kB/s | 3.0 kB     00:00    
CentOS Linux 8 - Extras                                          23 kB/s | 1.5 kB     00:00    
CentOS Linux 8 - FastTrack                                       40 kB/s | 3.0 kB     00:00    
CentOS Linux 8 - HighAvailability                                36 kB/s | 3.9 kB     00:00    
CentOS Linux 8 - Plus                                            24 kB/s | 1.5 kB     00:00    
CentOS Linux 8 - PowerTools                                      50 kB/s | 4.3 kB     00:00    
Extra Packages for Enterprise Linux Modular 8 - x86_64           13 kB/s | 9.2 kB     00:00    
Extra Packages for Enterprise Linux 8 - x86_64                   24 kB/s | 8.5 kB     00:00    
Metadata cache created.

After updating yum database, We can install tcpick using dnf by running the following command:

sudo dnf -y install tcpick

Install tcpick on CentOS 8 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

The output should look something like this:

CentOS Linux 8 - AppStream                                       43 kB/s | 4.3 kB     00:00    
CentOS Linux 8 - BaseOS                                          65 kB/s | 3.9 kB     00:00    
CentOS Linux 8 - ContinuousRelease                               43 kB/s | 3.0 kB     00:00    
CentOS Linux 8 - Extras                                          23 kB/s | 1.5 kB     00:00    
CentOS Linux 8 - FastTrack                                       40 kB/s | 3.0 kB     00:00    
CentOS Linux 8 - HighAvailability                                36 kB/s | 3.9 kB     00:00    
CentOS Linux 8 - Plus                                            24 kB/s | 1.5 kB     00:00    
CentOS Linux 8 - PowerTools                                      50 kB/s | 4.3 kB     00:00    
Extra Packages for Enterprise Linux Modular 8 - x86_64           13 kB/s | 9.2 kB     00:00    
Extra Packages for Enterprise Linux 8 - x86_64                   24 kB/s | 8.5 kB     00:00    
Metadata cache created.

After updating yum database, We can install tcpick using yum by running the following command:

sudo yum -y install tcpick

How To Uninstall tcpick on CentOS 8

To uninstall only the tcpick package we can use the following command:

sudo dnf remove tcpick

tcpick Package Contents on CentOS 8

/usr/lib/.build-id
/usr/lib/.build-id/f5
/usr/lib/.build-id/f5/d871d2cab5b6c5f0f943808e409225a3909c11
/usr/sbin/tcpick
/usr/share/doc/tcpick
/usr/share/doc/tcpick/AUTHORS
/usr/share/doc/tcpick/ChangeLog
/usr/share/doc/tcpick/EXAMPLES
/usr/share/doc/tcpick/KNOWN-BUGS
/usr/share/doc/tcpick/README
/usr/share/doc/tcpick/THANKS
/usr/share/licenses/tcpick
/usr/share/licenses/tcpick/COPYING
/usr/share/man/it/man8/tcpick.8.gz
/usr/share/man/man8/tcpick.8.gz

References

Summary

In this tutorial we learn how to install tcpick on CentOS 8 using yum and dnf.