Add 'setup_programs.sh'
This commit is contained in:
parent
4fb02ba1b9
commit
28840868f1
17
setup_programs.sh
Normal file
17
setup_programs.sh
Normal file
@ -0,0 +1,17 @@
|
||||
#!/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
|
||||
Loading…
x
Reference in New Issue
Block a user