The co-founder of CentOS has started a new distro that we can use instead of CentOS. This is Rocky linux. This is also based on RedHat linux.
Version | End of life date |
---|---|
8 | 21-05-2029 |
9 | 31-05-2032 |
Note: The partitioner is with multiple disks tricky to work with. You can only select the disk after you made the partition. So experiment with it until you find the solution you need.
If you don't have a GUA for IPv6 you can forget the IPv6 settings or use an fd00::/64 address. You can work with IPv6 on the LAN.
Anaconda is the installation program used by Fedora, Red Hat Enterprise Linux and some other distributions.
During installation, a target computer's hardware is identified and configured and the appropriate file systems for the system's architecture are created. Finally, anaconda allows the user to install the operating system software on the target computer. Anaconda can also upgrade existing installations of earlier versions of the same distribution. After the installation is complete, you can reboot into your installed system and continue doing customization using the initial setup program.
Anaconda is a fairly sophisticated installer. It supports installation from local and remote sources such as CDs and DVDs, images stored on a hard drive, NFS, HTTP, and FTP. Installation can be scripted with kickstart to provide a fully unattended installation that can be duplicated on scores of machines. It can also be run over VNC on headless machines. A variety of advanced storage devices including LVM, RAID, iSCSI, and multipath are supported from the partitioning program. Anaconda provides advanced debugging features such as remote logging, access to the python interactive debugger, and remote saving of exception dumps.
If you use nano editor change vi into nano.
# ping 192.168.1. # ping -4 www.google.com # ping -6 www.google.com
# dnf -y update # dnf install dnf-utils epel-release # dnf install http://rpms.remirepo.net/enterprise/remi-release-9.rpm # dnf config-manager --set-enabled epel # dnf config-manager --set-enabled plus # dnf config-manager --set-enabled crb # dnf install telnet // This is the telnet client we need for testing. # dnf install curl wget tar tree dnf-automatic testssl pinentry net-tools
We have some things to do.
# cd /etc/default # vi useradd CREATE_MAIL_SPOOL=no // Is not used. # cd /etc/dnf # vi dnf.conf installonly_limit=5 // Give 4 kernels to fallback to. # cd # vi .bashrc alias rm='rm -i' alias cp='cp -i' alias mv='mv -i' alias l.='ls -ld .* --color=auto' // Shows hidden directories and files alias ll='ls -l --color=auto' alias ls='ls --color=auto' alias lz='ls -lZ --color=auto' // Shows selinux settings #
Continue with item 15.
# dnf install mc // Midnight commander, a Norton commander clone. # dnf install tio // Terminal for ttySx connections. # dnf install traceroute // Display the route. # dnf groupinstall "Development Tools" // Optional