23 lines
371 B
Bash
Executable File
23 lines
371 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
dnf update -y
|
|
|
|
dnf install epel-release -y
|
|
|
|
crb enable
|
|
|
|
dnf install epel-release -y
|
|
|
|
dnf group install -y "Development Tools"
|
|
|
|
dnf install -y cmake libpcap-devel
|
|
|
|
dnf group install -y "Virtualization Host"
|
|
|
|
dnf install -y python3.12 python3.12-devel python3.12-pip
|
|
|
|
update-alternatives --set python3 /usr/bin/python3.12
|
|
|
|
pip3 install --upgrade pip
|
|
|