diff --git a/setup_programs.sh b/setup_programs.sh new file mode 100644 index 0000000..ad1238f --- /dev/null +++ b/setup_programs.sh @@ -0,0 +1,17 @@ +#!/bin/sh + +# Update Software repository +apt update +apt full-upgrade -y + +# Install base soft +apt install -y curl wget nano telnet iputils-ping net-tools + +# Setup timezone +## set noninteractive installation +export DEBIAN_FRONTEND=noninteractive +## install tzdata package +apt update && apt install -y tzdata +## set Moscow timezone +ln -fs /usr/share/zoneinfo/Europe/Moscow /etc/localtime +dpkg-reconfigure --frontend noninteractive tzdata \ No newline at end of file