Добавлен setup_programs.sh

This commit is contained in:
dimon 2022-02-28 19:08:05 +00:00
parent 3809fbbbc4
commit 57d600c2bf

22
setup_programs.sh Normal file
View File

@ -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