Impossível carregar fontes de software, software e atualizações no ubuntu 14.04

0

Está tendo problemas para executar as etapas acima. Eu tentei várias atualizações e reinstalar sugestões de outros fóruns, mas sem sorte. O atualizador de software afirma que tudo está atualizado, mas também não consigo abrir as configurações de lá.

Quando tento iniciar manualmente o terminal software-properties-gtk no i get:

Traceback (most recent call last):   File "/usr/bin/software-properties-gtk", line 101, in <module>
    app = SoftwarePropertiesGtk(datadir=options.data_dir, options=options, file=file)   File "/usr/lib/python3/dist-packages/softwareproperties/gtk/SoftwarePropertiesGtk.py", line 98, in __init__
    SoftwareProperties.__init__(self, options=options, datadir=datadir)   File "/usr/lib/python3/dist-packages/softwareproperties/SoftwareProperties.py", line 109, in __init__
    self.reload_sourceslist()   File "/usr/lib/python3/dist-packages/softwareproperties/SoftwareProperties.py", line 599, in reload_sourceslist
    self.distro.get_sources(self.sourceslist)       File "/usr/lib/python3/dist-packages/aptsources/distro.py", line 89, in get_sources
    (self.id, self.codename)) aptsources.distro.NoDistroTemplateException: Error: could not find a distribution template for Ubuntu/n/a

Vale a pena ressaltar que ainda posso instalar / remover software usando o apt-get ou o centro de software.

Alguma sugestão? Agradecemos antecipadamente por qualquer ajuda.

Craig

    
por biglam 30.01.2016 / 14:55

1 resposta

0

Parece ser um problema com suas fontes de software. Pressione Alt+f2 no seu teclado e escreva o seguinte código

    software-properties-gtk

Em seguida, na guia Ubuntu Software , altere a configuração Download from . Altere para Main Server se estiver usando qualquer servidor local. Veja se funciona.

Se a resposta acima não resolver o erro, abra um terminal e execute o seguinte código

sudo apt-get install software-properties-common

Deve resolver o erro.

Outra opção é atualizar o arquivo /etc/lsb-release de acordo com sua instalação, por exemplo

    DISTRIB_ID=Ubuntu
    DISTRIB_RELEASE=14.04
    DISTRIB_CODENAME=trusty
    DISTRIB_DESCRIPTION="Ubuntu 14.04"
    
por Tanmay 30.01.2016 / 15:31