Detailed explanation of how to upgrade software package versions under Linux

Detailed explanation of how to upgrade software package versions under Linux

In the Linux environment, you want to check whether a certain software (package) is installed.

If installed using rpm package, use rpm -qa | grep "name of software or package".

If installed using yum, run yum list installed | grep “name of software or package”.

Upgrade the package version.

We often encounter situations where we depend on other versions of packages (usually newer versions), and we need to upgrade the packages.

1. Install the new package after uninstalling.

First, check whether you have installed the software according to the method mentioned at the beginning of the article to check whether the software package is installed. If not, find the path and use the wget command to download the package and install it directly.

If installed, the version of the software you installed will be displayed. When writing the uninstall command later, just copy the package name.

use

rpm -e software.rpm (uninstall);

rpm -e --nodeps package name (force uninstall)

rpm –U software.rpm (installation in upgrade mode);

After uninstalling, you can install it using rpm -ivh package name.

2. Update the software package using yum

(1)List all the software that can be updated

Command: yum check-update

(2) Install all updated software

Command: yum update

(3) Install only the specified software

Command: yum install <package_name>

(4) Update only the specified software

Command: yum update <package_name>

(5) Install the software package using YUM

Command: yum install <package_name>

(6) Use YUM to delete the software package

Command: yum remove <package_name>

The above detailed explanation of how to upgrade the software package version under Linux is all the content that the editor shares with you. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM.

You may also be interested in:
  • Solution to Linux forced installation of rpm package
  • Solution to Linux forced installation of rpm package
  • Detailed explanation of several methods of installing software in Linux
  • Detailed explanation of installation and use of software packages under LINUX
  • How to solve the problem that the software package does not exist when installing software in Linux

<<:  Detailed explanation of how to automatically refresh the page and refresh method after deleting Vue list data

>>:  Detailed explanation of the use of MySQL select cache mechanism

Recommend

Linux redis-Sentinel configuration details

download Download address: https://redis.io/downl...

Use of Linux cal command

1. Command Introduction The cal (calendar) comman...

Two ways to remove the 30-second ad code from Youku video

I believe everyone has had this feeling: watching ...

Some summary of html to pdf conversion cases (multiple pictures recommended)

Due to work requirements, I recently spent some t...

Analysis of two usages of the a tag in HTML post request

Two examples of the use of the a tag in HTML post...

Semantics, writing, and best practices of link A

The semantics, writing style, and best practices ...

Detailed analysis of MySQL 8.0 memory consumption

Table of contents 1. innodb_buffer_pool_size 2. i...

HTML blockquote tag usage and beautification

Blockquote Definition and Usage The <blockquot...

How to configure nginx+php+mysql in docker

First, understand a method: Entering a Docker con...

Detailed explanation of common methods of JavaScript String

Table of contents 1. charAt grammar parameter ind...

Detailed explanation of how to efficiently import multiple .sql files into MySQL

MySQL has multiple ways to import multiple .sql f...

English: A link tag will automatically complete href in IE

English: A link tag will automatically complete h...

Excel export always fails in docker environment

Excel export always fails in the docker environme...

Using js to realize dynamic background

This article example shares the specific code of ...