esp32_bluetooth_classic_sni.../requirements.sh

13 lines
394 B
Bash
Raw Permalink Normal View History

2021-09-06 01:45:23 +00:00
#!/usr/bin/env bash
2021-11-04 22:02:25 +00:00
echo -e "\nInstalling libc6, cmake, clang, zstd and software-properties-common"
2022-03-25 03:34:38 +00:00
sudo apt install libc6 cmake clang zstd pkg-config 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-09 22:21:48 +00:00
sudo apt install wireshark 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"