Place Holder

Related links

Got A Project???

Over thirty years experience with hardware, software and networks, allows for an educated resolution to problems.
Obviously, on-site is limited to the Baton Rouge area, unless prior arrangements are made.

Minimal Rocky 8 Linux Install From Scratch

.....IN PROGRESS.....

nmcli device status
nmcli connection add type ethernet con-name my-ethernet ifname
nmcli connection up my-ethernet
nmcli device show
ip addr show

sudo dnf install -y perl perl-Net-SSLeay openssl
sudo nano /etc/yum.repos.d/webmin.repo
[Webmin] name=Webmin Repository
baseurl=http://download.webmin.com/download/yum
enabled=1
gpgcheck=1
gpgkey=http://www.webmin.com/jcameron-key.asc
Save and close the file (Ctrl+X, then Y, and Enter).

sudo dnf update -y
sudo dnf install webmin -y
sudo systemctl start webmin
sudo systemctl enable webmin

sudo firewall-cmd --zone=public --add-port=10000/tcp --permanent
sudo firewall-cmd --reload

sudo dnf install -y httpd
sudo systemctl start httpd
sudo systemctl enable httpd

sudo dnf install -y mariadb-server
sudo systemctl start mariadb
sudo systemctl enable mariadb
sudo mysql_secure_installation

sudo dnf install -y epel-release
sudo dnf install -y https://rpms.remirepo.net/enterprise/remi-release-8.rpm
sudo dnf module reset php
sudo dnf module enable php:remi-8.3
sudo dnf install -y php php-cli php-fpm php-mysqlnd
sudo dnf install -y php-xml php-gd php-opcache php-mbstring php-curl php-json php-zip
sudo systemctl restart httpd