Erros no apt-get update: Ubuntu 16.04 [duplicado]

1

Eu tenho tentado descobrir o que está acontecendo quando executo o apt-get update. Eu tentei ir através do arquivo de fontes e também usando o Ubuntu Tweak para limpar a lista de fontes, mas nada está funcionando.

Quando eu executo o apt-get update eu recebo isto:

Reading package lists... Done
N: Skipping acquire of configured file 'main/binary-i386/Packages' as repository 'https://packages.microsoft.com/repos/vscode stable InRelease' doesn't support architecture 'i386'
W: An error occurred during the signature verification. The repository is not updated and the previous index files will be used. GPG error: http://download.opensuse.org/repositories/home:/Horst3180/xUbuntu_16.04  Release: The following signatures were invalid: KEYEXPIRED 1496576244
W: The repository 'http://ppa.launchpad.net/tualatrix/ppa/ubuntu xenial 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.
W: Failed to fetch http://download.opensuse.org/repositories/home:/Horst3180/xUbuntu_16.04/Release.gpg  The following signatures were invalid: KEYEXPIRED 1496576244
E: Failed to fetch http://ppa.launchpad.net/tualatrix/ppa/ubuntu/dists/xenial/main/binary-amd64/Packages  404  Not Found
W: Some index files failed to download. They have been ignored, or old ones used instead.
W: Duplicate sources.list entry http://packages.microsoft.com/repos/vscode stable Release
    
por Jeremy Collins 11.06.2017 / 20:08

1 resposta

0

Você está tentando instalar (ou atualizar) o pacote chamado Ubuntu Tweak do PPA chamado tualatrix/ppa , que é descrito nesta página: link . No entanto, este PPA não contém nenhum pacote que seja compatível com a sua versão do Ubuntu ( xenial ), pois deixou de ser suportado após trusty .

Você pode tentar baixar o arquivo deb para trusty e instalá-lo, mas as chances são que as dependências não podem ser atendidas.

Este artigo explica mais detalhe o que aconteceu e aconselha você a instalar o Unity tweak .

Para limpar isso, exclua as linhas que contêm tualatrix do seu arquivo sources.list e / ou exclua os arquivos que contêm tualatrix de sources.list.d . Como alternativa, instale ppa-purge e sudo ppa-purge tualatrix/ppa .

Finalmente, execute sudo apt update && sudo apt upgrade novamente.

    
por Jos 11.06.2017 / 21:10