- 论坛徽章:
- 0
|
在安装RPM包时,如果遇到循环依赖的问题时,可以通过下面的方法来安装:
用*号通配符匹配此套件的所有RPM,并将所有相依赖的RPM包一起安装,同时加上 --aid的参数。
下面这条命令安装了libX11-devel, xorg-x11-proto-devel, mesa-libGL-devel, libXdmcp-devel相关的所有RPM包,它们之前都存在相互依赖的关系,无法单个来完成安装。
Normal
0
7.8 磅
0
2
false
false
false
EN-US
ZH-CN
X-NONE
MicrosoftInternetExplorer4
/* Style Definitions */
table.MsoNormalTable
{mso-style-name:普通表格;
mso-tstyle-rowband-size:0;
mso-tstyle-colband-size:0;
mso-style-noshow:yes;
mso-style-priority:99;
mso-style-qformat:yes;
mso-style-parent:"";
mso-padding-alt:0cm 5.4pt 0cm 5.4pt;
mso-para-margin:0cm;
mso-para-margin-bottom:.0001pt;
mso-pagination:widow-orphan;
font-size:10.0pt;
font-family:"Times New Roman","serif";
mso-fareast-font-family:宋体;
mso-fareast-theme-font:minor-fareast;}
rpm -ivh libX11-devel* xorg-x11-proto-devel*
mesa-libGL-devel* libXdmcp-devel* --aid
本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/13281/showart_1953235.html |
|