Solutions to problems related to software package dependency reporting during installation in Linux

Solutions to problems related to software package dependency reporting during installation in Linux

background

You cannot use yum to install on the intranet server. If you need to install it yourself, related dependency errors may occur (dependency package versions are incompatible). The solution is to find a machine with the same operating system version that supports yum, and copy the installed package to another machine for installation.

1) Enable the keepchche function of yum: Method 1

vi /etc/yum.conf  
	keepcache =1 # Change to 1	

insert image description here

Example: Install iptables

yum -y install iptables iptables-services  
cd /var/cache/yum/x86_64/7
ls     

As shown in the picture: the source of iptables is in the base directory

insert image description here

cd packages/ 
ls

According to the path of cachedir setting in the /etc/yum.conf configuration file, the iptables software just installed by yum is saved in packages/

insert image description here

2) yum-utils software: Method 2

# Install the yum-utils software, --destdir specifies the directory, and finally specifies the package name to be installed yumdownloader --destdir=/root iptables iptables-services
cd /root
ls

insert image description here

3) lrzsz download and upload

yum -y install lrzsz
# rz save to local/sz upload to server 

insert image description here

This concludes this article on solutions to problems such as dependency reporting when installing software packages in Linux. For more information on Linux dependency reporting issues, please search previous articles on 123WORDPRESS.COM or continue browsing the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Solve the problem that pycharm cannot automatically save in remote linux
  • Solve the problem of no my.cnf file in /etc when installing mysql on Linux
  • Linux disk space release problem summary

<<:  JavaScript destructuring assignment detailed explanation

>>:  MySQL stored functions detailed introduction

Recommend

Nginx configuration SSL and WSS steps introduction

Table of contents Preface 1. Nginx installation 1...

Detailed tutorial on installing Tomcat9 windows service

1. Preparation 1.1 Download the tomcat compressed...

Vue installation and use

Table of contents 1. Vue installation Method 1: C...

Reasons and solutions for MySQL failing to create foreign keys

When associating two tables, a foreign key could ...

Understanding and example code of Vue default slot

Table of contents What is a slot Understanding of...

Example analysis of mysql variable usage [system variables, user variables]

This article uses examples to illustrate the usag...

Practical TypeScript tips you may not know

Table of contents Preface Function Overloading Ma...

A brief introduction to Linux environment variable files

In the Linux system, environment variables can be...

Solve the problem of managing containers with Docker Compose

In Docker's design, a container runs only one...

In-depth explanation of the locking mechanism in MySQL

Preface In order to ensure the consistency and in...

How to use CSS style to vertically center the font in the table

The method of using CSS style to vertically cente...

How to detect whether a file is damaged using Apache Tika

Apache Tika is a library for file type detection ...

Detailed explanation of Linux text processing command sort

sort Sort the contents of a text file Usage: sort...