21 lines
492 B
Bash
21 lines
492 B
Bash
#!/bin/sh
|
|
|
|
# Update Software repository
|
|
apt update
|
|
apt full-upgrade -y
|
|
|
|
# Install base soft
|
|
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 update && apt-get install -y tzdata
|
|
## set Moscow timezone
|
|
ln -fs /usr/share/zoneinfo/Europe/Moscow /etc/localtime
|
|
dpkg-reconfigure --frontend noninteractive tzdata |