From 57d600c2bf5a39cdc223b494814b9f4e90b98168 Mon Sep 17 00:00:00 2001 From: dimon Date: Mon, 28 Feb 2022 19:08:05 +0000 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=20setup=5Fprograms.sh?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- setup_programs.sh | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 setup_programs.sh diff --git a/setup_programs.sh b/setup_programs.sh new file mode 100644 index 0000000..c301dbb --- /dev/null +++ b/setup_programs.sh @@ -0,0 +1,22 @@ +#!/bin/sh + +# Update Software repository +apt-get clean +apt-get update +apt-get upgrade -y + +# Install base soft +apt-get install -y wget +apt-get install -y nano +apt-get install -y telnet +apt-get install -y iputils-ping +apt-get install -y net-tools + +# Setup timezone +## set noninteractive installation +export DEBIAN_FRONTEND=noninteractive +## install tzdata package +apt-get update && apt-get 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