Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save OndrejValenta/dcf302ca5ae957b07062c9b77ed39614 to your computer and use it in GitHub Desktop.
Save OndrejValenta/dcf302ca5ae957b07062c9b77ed39614 to your computer and use it in GitHub Desktop.

Preparation of RockyLinux 9 template in Proxmox Server

Based on standard Linux Container RockyLinux 9 image Container is used in IPA domain, therefor IPA client is installed

Steps done

dnf update -y
dnf install -y epel-release

# INSTALL STANDARD TOOLS
dnf install -y mc nano htop

# INSTALL SSH SERVER
dnf install -y openssh-server
systemctl start sshd
systemctl enable sshd

# IF RUNNING AS VIRTUAL MACHINE INSTALL ALSO QEMU AGENT SO PROXMOX HYPERVISOR CAN UPDATE RockyLinux CONFIGURATION
dnf install qemu-guest-agent -y
systemctl enable qemu-guest-agent

# INSTALL IPA CLIENT
dnf install -y ipa-client
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment