How to install deb format software on centos

王林
Release: 2020-04-04 13:12:56
Original
5755 people have browsed it

How to install deb format software on centos

Solution:

You can convert the software format first and then install it.

The specific method is as follows:

1. Enter the root user and install alien

yum install alien
Copy after login

How to install deb format software on centos

2. Then convert the test software package through the alien command It is in rpm format

alien -r 软件名 generated
Copy after login

3. After the conversion is successful, you will get an rpm file

How to install deb format software on centos

4. Then try to use the rpm command to install

rpm  -ivh 文件名.rpm
Copy after login

How to install deb format software on centos

5. If the installation fails, you can force the installation.

rpm -ivh --nodeps --force 文件名.rpm
Copy after login

Recommended related tutorials: centos tutorial

The above is the detailed content of How to install deb format software on centos. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template