O repositório sonar-pkg não possui um arquivo Release

2

No Ubuntu 16.04, adicionei a seguinte linha a /etc/apt/source.list :

deb http://downloads.sourceforge.net/project/sonar-pkg/deb binary/

Em seguida, corro sudo apt-get update . O seguinte aviso é exibido:

W: The repository 'http://downloads.sourceforge.net/project/sonar-pkg/deb binary/ Release' does not have a Release file.
N: Data from such a repository can't be authenticated and is therefore potentially dangerous to use.
N: See apt-secure(8) manpage for repository creation and user configuration details.

Existe uma maneira de passar uma autenticação para o sonar packages para o apt?

    
por JJD 12.06.2017 / 19:51

2 respostas

1

Não há problema

Quando você executar sudo apt install sonar , verá esta mensagem:

Install these packages without verification? [y/N]

Basta pressionar y e o sonar será instalado:)

    
por Arun 12.06.2017 / 20:03
1

Acabamos de enfrentar o mesmo problema: Ubuntu 17.10 Artful:

E: The repository 'http://downloads.sourceforge.net/project/sonar-pkg/deb binary/ Release' does not have a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.

A solução temporária é baixar o pacote Debian e instalá-lo como:

dpkg -i sonar_6.7.1_all.deb
    
por Sergey Brunov 23.01.2018 / 11:34