What are the four basic tasks of RedHat Subscription Management Tools?
These tasks help manage system subscriptions and software access.
To register a system using the GUI, which tool do you need to launch?
RedHat Subscription Mngr
You need sudo or root password to access this tool.
What command is used to register a system via the CLI?
$subscription-manager register –username=<RHID> --password=<YOURPASSWD></YOURPASSWD></RHID>
This command connects the system to the RedHat ID.
What is created once a system is registered with RedHat?
Entitlement Certificate
This certificate is unique to the system and stored locally.
What does RPM stand for?
RedHat Package Manager
RPM manages software packages in RHEL.
What are the three components installed with each RPM package?
These components ensure proper installation and functionality of software.
What command lists all installed packages in RPM?
rpm -qa
This command provides a comprehensive list of all packages currently installed.
What is the purpose of YUM?
An advanced tool that works with RPM to install and remove software
YUM can install software from the Internet, unlike RPM which requires local files.
To install a package using YUM, what command is used?
$sudo yum install <packagename></packagename>
This command installs the specified package from the repositories.
What command shows the repositories your system knows about?
$yum repolist all
This command lists all available repositories configured on the system.
To create a new repository, which command is used?
$sudo yum-config-manager –add-repo=”<URL>"</URL>
This command adds a new repository configuration file in /etc/yum.repos.d.
What are the two types of RHEL v8 repositories?
BaseOS contains the core OS, while Application Stream includes various software.
To list available modules in YUM, what command is used?
$sudo yum module list
This command displays all modules available for installation.
Fill in the blank: YUM is an advanced tool that works with RPM to install and remove _______.
software
YUM enhances the capabilities of RPM by allowing online package management.
What command lists info of the software installed on the system?
rpm -qi “software name”