2024-05-15 00:02:59 +03:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
|
|
dnf -y update
|
|
|
|
|
|
2025-07-23 02:04:54 +03:00
|
|
|
dnf -y install nano rsync wget curl git mc tree openssl \
|
2025-07-23 01:59:24 +03:00
|
|
|
chrony cronie ntpstat \
|
2024-05-15 00:02:59 +03:00
|
|
|
unzip zip \
|
|
|
|
|
mtr traceroute net-tools tcpdump bind-utils \
|
2025-07-23 01:59:24 +03:00
|
|
|
tcsh sysstat atop nginx \
|
2025-07-23 02:13:04 +03:00
|
|
|
python \
|
2025-07-23 02:02:35 +03:00
|
|
|
postgresql mysql
|
2024-05-15 00:02:59 +03:00
|
|
|
|
2025-07-23 01:59:24 +03:00
|
|
|
#dnf -y group install standard core \
|
|
|
|
|
# hardware-support development-libs development-tools
|
|
|
|
|
# dnf -y install postgresql-server-devel
|
2024-05-15 00:02:59 +03:00
|
|
|
|
2025-07-23 02:13:04 +03:00
|
|
|
wget --directory-prefix /root https://bootstrap.pypa.io/get-pip.py
|
|
|
|
|
python3 /root/get-pip.py
|
|
|
|
|
|
2024-05-15 00:02:59 +03:00
|
|
|
dnf -y clean all
|