Obtendo o erro sempre que tentar adicionar um repositório

4

Sempre que tento adicionar um repositório, recebo um NoDistroTemplate Exception . Estou usando o Linux Mint 14 Nadia.

tusharmakkar08@tusharmakkar08-Satellite-C660 ~ $  sudo add-apt-repository ppa:webupd8team/java 

You are about to add the following PPA to your system:
 Oracle Java (JDK) Installer (automatically downloads and installs Oracle JDK6 / JDK7 / JDK8). 
 There are no actual Java files in this PPA. 
 More info: http://www.webupd8.org/2012/01/install-oracle-java-jdk-7-in-ubuntu-via.html
 More info: https://launchpad.net/~webupd8team/+archive/java
Press [ENTER] to continue or ctrl-c to cancel adding it
Traceback (most recent call last):
  File "/usr/bin/add-apt-repository", line 161, in <module>
    sp = SoftwareProperties(options=options)
  File "/usr/lib/python3/dist-packages/softwareproperties/SoftwareProperties.py", line 104, in __init__
    self.reload_sourceslist()
  File "/usr/lib/python3/dist-packages/softwareproperties/SoftwareProperties.py", line 592, in reload_sourceslist
    self.distro.get_sources(self.sourceslist)    
  File "/usr/lib/python3/dist-packages/aptsources/distro.py", line 87, in get_sources
    raise NoDistroTemplateException("Error: could not find a "
aptsources.distro.NoDistroTemplateException: Error: could not find a distribution template

Como remover essa exceção?

    
por tusharmakkar08 28.04.2013 / 10:08

1 resposta

2

Eu acho que o erro é bastante auto-explicativo. O PPA que você está tentando adicionar não fornece pacotes para sua versão / release particular do Mint. Pelo menos não no nível PPA, embora os pacotes possam ser completamente compatíveis.

Dê uma olhada nisso Q & A no askubuntu , especificamente esta resposta .

Existe uma solução que você pode tentar, mas não é a abordagem recomendada para lidar com esse problema específico:

trecho de esta postagem no fórum :

The error regarding distribution template is refering to the file "/etc/lsb-release" It should read something like...

DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=11.10
DISTRIB_CODENAME=oneiric
DISTRIB_DESCRIPTION="Ubuntu 11.10"

The ubuntu version depends on the version of mint you are using. You should be able to change the DISTRIB_DESCRIPTION to change the name of the OS during grub boot but you can't change the rest without breaking the source.list distribution template.

    
por 28.04.2013 / 15:51