pi-hosted/tools/update_libseccomp2.sh
Robert Middleswarth 0940f1e7fc
Migrate all the tools to a sub folder called tools. (#110)
* Migrate all the scripts to the tools folder
2021-11-01 22:14:04 -04:00

7 lines
387 B
Bash
Executable file

#!/bin/bash
echo "Libseccomp2 upgrade needed if you run rpi 32bit. Check version dpkg-query -W libseccomp, if the version 2.3 or blow, please run this script."
cd ~
wget http://ftp.us.debian.org/debian/pool/main/libs/libseccomp/libseccomp2_2.5.2-2_armhf.deb
sudo dpkg -i libseccomp2_2.5.2-2_armhf.deb
rm -f libseccomp2_2.5.2-2_armhf.deb
echo "Updating the libseccomp2 file is complete."