Erro durante o upgrade do apt-get em wheezy

4

Hoje eu queria atualizar meu sistema do Debian Wheezy para o Jessie. Como primeiro passo, achei uma boa ideia atualizar os pacotes atuais de wheezy:

sudo apt-get update
sudo apt-get upgrade

... no entanto, no comando "upgrade", recebi um erro (desculpe, só tenho o texto em alemão):

Paketlisten werden gelesen... Fertig
E: Der Wert »stable« ist für APT::Default-Release ungültig, da solch eine Veröffentlichung in den Paketquellen nicht verfügbar ist.

Uma tradução do erro pode ser:

E: The value "stable" is for APT::Default-Release is invalid, since such a release is not available in the package-sources.
    
por Alex 02.05.2015 / 12:59

3 respostas

4

O valor para o APT :: Default-Release pode ser modificado em:

/etc/apt/apt.conf/10defaultRelease

Como a versão "estável" mudou de "wheezy" para "jessie", é necessário substituir "stable" por "oldstable" nesse arquivo. Se você quer atualizar para jessie (e se você atualizou seu sources.list), você pode substituir a string por "stable" novamente.

Editar:

Ao olhar em um sistema debian diferente, o arquivo "10defaultRelease" não existe. Parece que este arquivo só é necessário se os repositórios de duas versões diferentes da Debian forem misturados.

    
por 02.05.2015 / 12:59
0

De: link

At one time, you had a repository with the release name "stable-updates" in your sources, and set Synaptic to prefer packages from that repository in its settings. Then the repository was removed, and Synaptic is freaking out. (Sort of a bug, IMO) I believe that setting is in the /root/.synaptic/synaptic.conf file if you have a root account, and kmathern has come up with this code to fix the setting:

su -c "sed -i 's/DefaultDistro \".*\"/DefaultDistro \"\"/' /root/.synaptic/synaptic.conf"

    
por 25.08.2017 / 14:27
-1

A simples substituição de oldstable por oldoldstable no arquivo /root/.synaptic/synaptic.conf fez o truque

    
por 20.09.2017 / 11:17