ubuntu-base/setup_programs.sh
2024-08-21 15:52:08 +00:00

17 lines
459 B
Bash

#!/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