Velocidades de download muito lentas com a instalação do yum

1

No Fedora, eu não sei porque, mas toda vez que eu digito sudo yum install [package] , eu entendo isso:
Fedora 27 - i386 0% [ ] 70 kB/s | 512 kB 12:47 ETA Isso está muito longe do que eu esperava. Por que estou recebendo isso?

    
por First Last 11.12.2017 / 15:22

1 resposta

2

Você certamente tem um problema com o espelho usado por dnf .

Você pode alterar seu espelho atual para um dos espelhos listados aqui .

Como visto aqui :

There are multiple options, you can hard code it (/etc/yum.repos.d/fedora.repo) or using fastmirror.

In order to use fastmirror you must first activate it:

in /etc/dnf/dnf.conf add fastestmirror=true then using this command dnf config-manager --add-repo add the mirror you want to use, you can add multiple mirrors and the fastest one will be used.

Example:

sudo dnf config-manager --add-repo http://ftp.byfly.by/pub/fedoraproject.org/linux/releases/23/Everything/x86_64/os/

You must use the path /linux/releases/23/Everything/x86_64/os/ for fedora 23 releases and for fedora 23 updates /linux/updates/23/x86_64/ otherwise will not work.

Adapte isto à sua versão do Fedora e você deverá ver uma grande melhoria.

    
por 11.12.2017 / 15:36