我正在安装的软件需要mesa-dri-filesytem:
这是安装程序的屏幕截图。我不想触摸文件。就像更改mesa-dri-filesystem to mesa-filesystem


但是我目前正在使用Cento OS 7,它可以找到绝对的软件包:


我正在将其安装到脱机服务器上,所以yum install不起作用,我只是获得RPM然后执行rpm -ivh [package-name]

请在这件事上给予我帮助

最佳答案

之所以收到此错误,是因为您已经在系统软件包mesa-filesystem-18.0.5中安装了已过时(即替换,替换)软件包mesa-dri-filesystem mesa-dri-filesystem-11.0.7,因为11.0.7 mesa-filesystem的操作。

但是mesa-filesystem同时在我的系统上提供mesa-dri-filesystem

# rpm -q --provides mesa-filesystem
mesa-dri-filesystem = 19.0.8-1.fc30
mesa-filesystem = 19.0.8-1.fc30


因此,如果您的软件包需要mesa-dri-filesystem,则即使安装了mesa-filesystem,也将满足您的要求。

关于linux - 包mesa-filesystem向后兼容,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/57082355/

10-10 14:12