Instalando o gcc sem repo ou yum

1

Estou com problemas para instalar o gcc com o Yum. Não consigo entrar em contato com os repositórios e também não consigo instalar ferramentas de desenvolvedor.

Existe algum tipo de link que eu possa acessar e instalar no arquivo .tgz ?

Aqui está o meu problema:

[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

Um dos repositórios configurados falhou (Desconhecido),  e o yum não tem dados em cache suficientes para continuar. Neste ponto, o único  Uma coisa segura que o yum pode fazer é falhar. Existem algumas maneiras de trabalhar "consertar" isso:

 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
O arquivo

é criptografado ou não é um banco de dados

    
por Wraiith 15.01.2018 / 23:13

1 resposta

3

Você pode instalar isso com yum usando < strong> localinstall :

localinstall is used to install a set of local rpm files. If required the enabled repositories will be used to resolve dependencies. Note that the install command will do a local install, if given a filename. This command is maintained for legacy reasons only.

Faça o download do rpm de um repositório, não se esqueça de escolher a versão correta do SO (ex: Repo do CentOS ) e, em seguida, execute o seguinte comando:

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

Informações adicionais: é mais interessante instalar o rpm com yum , depois com o comando rpm . Desta forma, o pacote instalado será listado no banco de dados yum.

    
por 16.01.2018 / 14:22