To install an RPM (Red Hat Package Manager) file on a Linux system, you can use the rpm
command with the -i
option.
Here is the basic syntax for installing an RPM file on a Linux system:
rpm -i package.rpm
Replace package.rpm
with the name of the RPM file you want to install.
For example, to install the httpd
package from the httpd-2.4.46-1.el7.centos.x86_64.rpm
file, you can use the following command:
rpm -i httpd-2.4.46-1.el7.centos.x86_64.rpm
This will install the httpd
package on your system.
You can use the rpm
command with the -q
option to verify that the package has been installed successfully. For example:
rpm -q httpd
This will display the version and release of the httpd
package installed on your system.
By using the rpm
command with the -i
option, you can easily install RPM files on your Linux system. It's always a good idea to carefully review the documentation and use the appropriate commands to install packages on your system. This will help ensure that the packages are installed correctly and that your system is properly configured.