Como resolver o problema do arquivo de lançamento ausente

2

No momento, estou tentando instalar o Syncthing seguindo o guia oficial , mas depois que eu

# Add the "stable" channel to my APT sources:
echo "deb https://apt.syncthing.net/ syncthing stable" | sudo tee /etc/apt/sources.list.d/syncthing.list

e

sudo apt-get update

Eu recebo a seguinte resposta

...
Ign:2 https://apt.syncthing.net syncthing InRelease
...
Reading package lists... Done
E: The repository 'https://apt.syncthing.net syncthing Release' does not have a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.

Não sabe como proceder daqui. Não há um 'caminho seguro' para instalar scynthing? Alguém já teve esse problema? A ajuda é muito apreciada, obrigado.

    
por natral 28.03.2018 / 17:44

1 resposta

0

Eu acredito que você primeiro precisa adicionar o arquivo de lançamento do syncthing.

Adicione as chaves PGP de lançamento:

curl -s https://syncthing.net/release-key.txt | sudo apt-key add -

Em seguida, adicione o canal "estável" às suas fontes do APT:

echo "deb https://apt.syncthing.net/ syncthing stable" | sudo tee /etc/apt/sources.list.d/syncthing.list

Agora atualize e instale a sincronização:

sudo apt update

sudo apt install syncthing

[opcionalmente] sudo apt install syncthing-gtk

    
por ptetteh227 28.03.2018 / 17:54