yum 설치 프로그램의 저장소 설정을 변경하는 방법은 무엇입니까?

yum 설치 프로그램의 저장소 설정을 변경하는 방법은 무엇입니까?

저는 Linux를 처음 접했습니다. CentOS에 Tint2를 설치하려고 합니다. 명령을 사용하여 설치하려고 하면 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.`

사용해야 할 패키지를 설치하려고 할 때

$>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

나는 여기서 조금 불분명하다. 사용 가능한 패키지의 다른 저장소에서 x* 패키지를 찾기 위해 yum 설정을 변경하는 방법은 무엇입니까?

무슨 뜻이에요

"Alternatively, you may set the environment variables X11_CFLAGS
and X11_LIBS to avoid the need to call pkg-config.

답변1

저장소의 .rpm 파일을 다운로드하고 설치하여 Yum을 구문 대체 저장소로 설정할 수 있습니다. 올바른 지침은 다음에서 찾을 수 있습니다.EPEL 저장소 설치

답변2

다른 포함 항목을 검색합니다 xinerama. 저장소를 다운로드하고 설치합니다 rpm new. 저장소는 다음 위치에 생성됩니다./etc/yum.repos.d

그리고 달리다yum install xinerama

관련 정보