rudi9999 hai 1 ano
pai
achega
83c0a921a9
Modificáronse 1 ficheiros con 25 adicións e 0 borrados
  1. 25 0
      install

+ 25 - 0
install

@@ -0,0 +1,25 @@
+#!/bin/bash
+
+source /etc/os-release
+
+inst='libtomcrypt1 libtommath1 zlib1g'
+
+case $VERSION_ID in
+    20.04*|20.10*|21.04*|21.10*|22.04*) inst+=' libcrypt1';;
+esac
+
+apt update -y; apt install -y $inst
+
+mkdir tmp
+
+cd tmp
+
+wget 
+
+dpkg -i *.deb
+
+cd ../
+
+rm -rf tmp
+
+exit 0