Добавлен setup_programs.sh
This commit is contained in:
parent
3809fbbbc4
commit
57d600c2bf
22
setup_programs.sh
Normal file
22
setup_programs.sh
Normal 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
|
||||
Loading…
x
Reference in New Issue
Block a user