From 09a44e6bce1a98c2b7629d999459c0fc33e6a8cf Mon Sep 17 00:00:00 2001 From: dimon Date: Tue, 6 Dec 2022 13:57:24 +0000 Subject: [PATCH] =?UTF-8?q?=D0=98=D0=B7=D0=BC=D0=B5=D0=BD=D0=B8=D0=BB(?= =?UTF-8?q?=D0=B0)=20=D0=BD=D0=B0=20'setup=5Fprograms.sh'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- setup_programs.sh | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/setup_programs.sh b/setup_programs.sh index c301dbb..9afa9a6 100644 --- a/setup_programs.sh +++ b/setup_programs.sh @@ -1,22 +1,21 @@ #!/bin/sh # Update Software repository -apt-get clean -apt-get update -apt-get upgrade -y +apt update +apt full-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 +apt install -y wget +apt install -y nano +apt install -y telnet +apt install -y iputils-ping +apt install -y net-tools # Setup timezone ## set noninteractive installation export DEBIAN_FRONTEND=noninteractive ## install tzdata package -apt-get update && apt-get install -y tzdata +apt 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