今天发现tshark新版本可以解析 ja3,想在在服务器上安装新版本,顺便记录下。
抄的
默认安装tshark会是2.x,以下是安装3.x的方法:
使用命令:
sudo add-apt-repository ppa:wireshark-dev/stable
sudo apt update
安装wireshark3.x:
sudo apt install wireshark
安装tshark3.x(可以不安装wireshark,直接安装tshark):
sudo apt install tshark
遇到的问题
遇到错误
Could not connect to ppa.launchpad.net:80
解决办法是
apt => apt-get
sudo: apt-add-repository: command not found?
解决办法是
sudo apt update
sudo apt install software-properties-common
https://linuxconfig.org/sudo-apt-add-repository-command-not-found
参考
https://blog.csdn.net/weixin_35757704/article/details/122102753