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
2. Then convert the test software package through the alien command It is in rpm format
alien -r 软件名 generated
3. After the conversion is successful, you will get an rpm file
4. Then try to use the rpm command to install
rpm -ivh 文件名.rpm
5. If the installation fails, you can force the installation.
rpm -ivh --nodeps --force 文件名.rpm
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!