Centos installs the rpm package and finds the quick download address

Search the RPM repository on rpmfind.net

The downloaded rpm package can be obtained through the above URL, and dependent packages can continue to be retrieved and downloaded

Install command using

1. Install multiple packages

# 1. Upload rpm package # 2. Ignore dependencies and force installation of all rpm packages

rpm -ivh *.rpm --nodeps --force

2. Install a single package

rpm -ivh *.rpm

3 If two packages depend on each other

rpm -ivh *.rpm  --force --nodeps

4. If the packet conflicts

rpm -Uvh XXXX-4.4.7-23.el6.x86_64.rpm upgrade installation

Guess you like

Origin blog.csdn.net/zhaolulu916/article/details/130580205