Install rpm installation package under Ubuntu system

Table of contents

Preface

The Ubuntu software package format is deb
and the RPM format package belongs to Red Hat. Red Hat
cannot install it directly using commands.
It needs to be converted through a bridge.

method

Convert its rpm format package to deb format package.
The specific conversion is performed through alien.

This installation package is not installed by default

sudo apt-get install alien 

So first install this installation package
Insert image description here
and then convert it through this command

sudo alien xxxx.rpm

After converting rpm to deb,
Insert image description here
deb files will appear

Insert image description here

sudo dpkg -i xxxx.deb

In this way, the xxxx software can be installed.

Insert image description here

Guess you like

Origin blog.csdn.net/weixin_47872288/article/details/120771718#comments_28574434