Prepare environment
sudo dnf -y update
sudo yum install -y epel-release
sudo dnf install -y wget curl nano mc git
sudo dnf groupinstall -y "Development Tools"
From multiple sources
sudo dnf check-update
sudo dnf config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo
sudo dnf install -y docker-ce docker-ce-cli containerd.io
wget -q -O gpg.key https://rpm.grafana.com/gpg.key sudo rpm --import gpg.key
nano /etc/yum.repos.d/grafana.repo
and paste
[grafana]
# Define the folder path where SVG files are located | |
$folderPath = ".\" | |
# Get a list of all SVG files in the folder | |
$svgFiles = Get-ChildItem -Path $folderPath -Filter *.svg | |
# Create an HTML header with a grid layout | |
$htmlContent = @" | |
<!DOCTYPE html> | |
<html lang="en"> |