Modifying Network Interface IP Addresses on AlmaLinux

Identifying Network Interfaces To inspect active interfaces and assigned addresses, execute: ip addr show Check connection status with: nmcli device status Common interface naming patterns include ens33, eth0, or enp0s3. Persistent Configuration via NetworkManager Files AlmaLinux manages network connections using NetworkManager. Interface def ...

Posted on Sat, 20 Jun 2026 17:21:34 +0000 by nwoottonn

Building an Nginx Docker Image Using AlmaLinux

Creating the Base Image This process builds an Nginx imagee from AlmaLinux:latest that automatically starts Nginx when containers launch. Setting Up Files mkdir ~/docker-nginx cd ~/docker-nginx echo 'Nginx operational' > index.html Dockerfile Configuration FROM almalinux:latest RUN yum clean all && \ yum -y install epel-release ...

Posted on Sun, 17 May 2026 22:53:27 +0000 by stephaneey