You can use the rpm command to install, such as:
Install the rpm file
rpm -ivh foo-1.0-l.i386.rpm
-i: The meaning of installation
- v: Visualization
-h: Display installation progress
(Recommended tutorial: linux tutorial)
Extension:
Uninstall the software in rpm
rpm -e foo
Upgrade software package
rpm -Uvh foo-2.0-l.i386.rpm
Recommended related video tutorials: linux video tutorial
The above is the detailed content of How to install rpm file in linux. For more information, please follow other related articles on the PHP Chinese website!