2021-09-06 01:45:23 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2021-09-07 04:13:53 +00:00
|
|
|
echo -e "\nInstalling cmake, clang, zstd and software-properties-common"
|
|
|
|
sudo apt install cmake clang zstd software-properties-common -y
|
2021-09-06 01:45:23 +00:00
|
|
|
|
|
|
|
|
|
|
|
echo -e "\n\nInstalling latest stable wireshark"
|
2021-09-07 00:45:07 +00:00
|
|
|
sudo add-apt-repository --y ppa:wireshark-dev/stable
|
2021-09-06 01:45:23 +00:00
|
|
|
sudo apt-get update
|
2021-09-07 00:45:07 +00:00
|
|
|
sudo apt install wireshark-dev -y
|
2021-09-06 01:45:23 +00:00
|
|
|
|
2021-09-06 09:19:40 +00:00
|
|
|
echo "Done! Run build.sh to build project"
|