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]
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]
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
This guide is a combination of two sources
https://www.thegeekdiary.com/centos-rhel-7-how-to-configure-serial-getty-with-systemd/
These steps are (probably) only applicable for NON QEMU installation of Rocky Linux VM
After installation of Rocky Linux on our Proxmox as Virtual machine (not Linux container) the machine was not accessible from outside world with SSH or ICMP
The solution was to set ipv4.gateway properly.
nmcli con mod ens18 ipv4.method "manual" ipv4.addresses "10.30.0.87/24" ipv4.dns "10.30.0.2" ipv4.gateway "10.30.0.1"
#!/bin/bash | |
# Update everything automatically | |
dnf update -y | |
# Install nano and other useful stuff because you are not a masochist | |
dnf install epel-release -y; | |
dnf makecache |
Based on various sources