소스 검색

Fix typo regarding Library Name.

Robert Middleswarth 3 년 전
부모
커밋
2167b91aa2
2개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. 2 2
      docs/README.md
  2. 2 2
      update_libseccomp2.sh

+ 2 - 2
docs/README.md

@@ -17,12 +17,12 @@ wget -qO- https://git.io/JwUkc | bash
 ### Pi OS
 ### Pi OS
 Currently Pi OS is running an old version of libseccomp that is causing problems with many containers that are preventing them from running.  To fix this we need to manually install a newer version of libseccomp.  However we first need to check and see if you are running an older version.  To check please run sudo dpkg-query -W libseccomp.
 Currently Pi OS is running an old version of libseccomp that is causing problems with many containers that are preventing them from running.  To fix this we need to manually install a newer version of libseccomp.  However we first need to check and see if you are running an older version.  To check please run sudo dpkg-query -W libseccomp.
 ```
 ```
-sudo dpkg-query -W libseccomp
+sudo dpkg-query -W libseccomp2
 ```
 ```
 If you are running a version less that 2.5 you will need to run the upgrade script.
 If you are running a version less that 2.5 you will need to run the upgrade script.
 
 
 ```
 ```
-wget -qO- https://git.io/Jijk8 | bash
+wget -qO- https://git.io/JPsSb | bash
 ```
 ```
 
 
 ### Reboot for changes to take effect
 ### Reboot for changes to take effect

+ 2 - 2
update_libseccomp2.sh

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