我对Linux非常陌生。我正在试图在tint2上安装CentOS。当我试图使用命令yum install tint2安装时,它给出了以下错误
checking for X11... configure: error: Package requirements (x11 xcomposite xdamage xinerama xrender xrandr) were not met:
No package 'xcomposite' found
No package 'xdamage' found
No package 'xinerama' found
No package 'xrandr' found
Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.
Alternatively, you may set the environment variables X11_CFLAGS
and X11_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.`当我试图安装那些软件包时,我认为应该使用
A2gt;yum install xinerama
Failed to set locale, defaulting to C
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
* base: mirrors.lga7.us.voxel.net
* extras: mirror.rackspace.com
* updates: mirror.atlanticmetro.net
Setting up Install Process
No package xinerama available.
Nothing to do我在这里有点不清楚。如何更改yum设置,以便在可用包的不同存储库中查找x*包?
当它说
"Alternatively, you may set the environment variables X11_CFLAGS
and X11_LIBS to avoid the need to call pkg-config.发布于 2013-08-02 21:38:56
您可以通过下载和安装回购的.rpm文件将Yum设置为替代回购。在埃佩尔回购装置中可以找到正确的指令
发布于 2015-02-04 12:56:10
搜索其他存储库,其中包括xinerama。下载并使用rpm new安装该存储库。回购将在/etc/yum.repos.d中创建
并运行yum install xinerama
https://unix.stackexchange.com/questions/53231
复制相似问题