Your support on Ko-Fi is much appreciated:
Recommended RHCSA book:
📔 Amazon AU: https://amzn.to/2X5FL98
Buy CSG Merchandise:
More information on Sophos Home Antivirus:
More information about Hostinger VPS:
👉 http://bit.ly/H-VPS
Join our new discord channel:
👉 https://discord.gg/kBQ6Jry
This video is based on RHEL 8. Video to cover the section ‘ConfConfigure network services to start automatically at boot’ for the RHCSA (Red Hat Certified System Administrator).
More information on the required learning: http://bit.ly/rhcsa8
Notes from the video:
There are two ways to capture this requirement, the first is to enable as service that uses the network on boot, for example httpd (apache):
Install httpd:
# dnf install httpd
Enable it on boot:
# systemctl enable httpd
Another example would be the Network Manager service:
# systemctl enable NetworkManager
The other method to capture this would be to enable a network card or connection on boot:
# nmcli connection modify eth0 connection.autoconnect yes
This will enable the connection upon system bootup, a no will disable it.