repo 또는 yum을 사용하지 않고 gcc 설치

repo 또는 yum을 사용하지 않고 gcc 설치

Yum을 사용하여 gcc를 설치하는 데 문제가 있습니다. 저장소에 접속할 수 없고 개발자 도구를 설치할 수 없습니다.

.tgzwget하여 파일 에 설치할 수 있는 링크가 있나요 ?

내 질문은 다음과 같습니다.

[root@localhost]# yum -y install gcc
Loaded plugins: fastestmirror
base                                                                     | 3.6 kB  00:00:00     
epel/x86_64/metalink                                                     |  15 kB  00:00:00     
extras                                                                   | 3.4 kB  00:00:00     
updates                                                                  | 3.4 kB  00:00:00     
xymon                                                                    | 2.9 kB  00:00:00     
xymon-testing                                                            | 2.9 kB  00:00:00     
Loading mirror speeds from cached hostfile
 * base: centos.mirror.constant.com
 * epel: mirror.steadfast.net
 * extras: mirrors.gigenet.com
 * updates: repo.us.bigstepcloud.com

구성된 리포지토리 중 하나가 실패했으며(알 수 없음) yum에 캐시된 데이터가 부족하여 계속할 수 없습니다. 이 시점에서 yum이 할 수 있는 유일한 안전한 일은 실패입니다. 이 문제를 "수정"하는 방법에는 여러 가지가 있습니다.

 1. Contact the upstream for the repository and get them to fix the problem.

 2. Reconfigure the baseurl/etc. for the repository, to point to a working
    upstream. This is most often useful if you are using a newer
    distribution release than is supported by the repository (and the
    packages for the previous distribution release still work).

 3. Disable the repository, so yum won't use it by default. Yum will then
    just ignore the repository until you permanently enable it again or use
    --enablerepo for temporary usage:

        yum-config-manager --disable <repoid>

 4. Configure the failing repository to be skipped, if it is unavailable.
    Note that yum will try to contact the repo. when it runs most commands,
    so will have to try and fail each time (and thus. yum will be be much
    slower). If it is a very temporary problem though, this is often a nice
    compromise:

        yum-config-manager --save --setopt=<repoid>.skip_if_unavailable=true

파일이 암호화되었거나 데이터베이스가 아닙니다.

답변1

이것을 설치할 수 있습니다사용로컬 설치:

localinstall은 로컬 rpm 파일 세트를 설치하는 데 사용됩니다. 필요한 경우 활성화된 리포지토리를 사용하여 종속성을 해결합니다. 파일 이름이 주어지면 install 명령은 로컬 설치를 수행합니다. 이 명령은 레거시 이유로만 유지됩니다.

저장소에서 rpm을 다운로드하고 올바른 OS 버전을 선택하는 것을 잊지 마십시오(예:CentOS 저장소) 그런 다음 다음 명령을 실행합니다.

yum localinstall /path/to/the/package.rpm


추가 정보:yum명령을 사용하여 rpm을 설치하는 것이 더 재미있습니다 rpm. 이렇게 하면 설치된 패키지가 yum 데이터베이스에 나열됩니다.

관련 정보