sudo apt install vim sudo vim /etc/apt/sources.list
改成以下
1 2 3
deb https://mirrors.tuna.tsinghua.edu.cn/debian bookworm main contrib non-free-firmware deb https://mirrors.tuna.tsinghua.edu.cn/debian-security bookworm-security main contrib non-free-firmware deb https://mirrors.tuna.tsinghua.edu.cn/debian bookworm-updates main contrib non-free-firmware
还有一处
1
sudo vim /etc/apt/sources.list.d/raspi.list
改成以下
1
deb https://mirrors.tuna.tsinghua.edu.cn/raspberrypi bookworm main
wget https://github.com/greatscottgadgets/libbtbb/archive/2020-12-R1.tar.gz -O libbtbb-2020-12-R1.tar.gz tar -xf libbtbb-2020-12-R1.tar.gz cd libbtbb-2020-12-R1 mkdir build cd build cmake .. make sudo make install sudo ldconfig
ubertooth tools:
1 2 3 4 5 6 7 8 9
wget https://github.com/greatscottgadgets/ubertooth/releases/download/2020-12-R1/ubertooth-2020-12-R1.tar.xz tar -xf ubertooth-2020-12-R1.tar.xz cd ubertooth-2020-12-R1/host mkdir build cd build cmake .. make sudo make install sudo ldconfig
装wireshark和ubertooth插件 以下cmake的时候会有问题
1 2 3 4 5 6 7
sudo apt-get install wireshark wireshark-dev libwireshark-dev cmake cd libbtbb-2020-12-R1/wireshark/plugins/btbb mkdir build cd build cmake -DCMAKE_INSTALL_LIBDIR=/usr/lib/aarch-linux-gnu/wireshark/plugins/4.0/epan .. make sudo make install
sudo apt-get install wireshark wireshark-dev libwireshark-dev cmake cd libbtbb-2020-12-R1/wireshark/plugins/btbredr mkdir build cd build cmake -DCMAKE_INSTALL_LIBDIR=/usr/lib/aarch-linux-gnu/wireshark/plugins/4.0/epan .. make sudo make install