22 lines
533 B
Bash
22 lines
533 B
Bash
#!/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 |