Ubuntu 16.04 “Ocorreu um problema ao verificar as atualizações”

2

Estou executando o Ubuntu 16.04 e, de repente, o APT está quebrado e não consigo abrir um terminal. Mais especificamente, estou obtendo o círculo vermelho com um sinal de menos branco na barra de ferramentas na parte superior e quando clico nele, ele diz A problem occurred when checking for the updates . Quando eu clico no Terminal, o ponteiro do mouse muda para um círculo por alguns segundos e nada acontece.

Eu percebo que isso foi perguntado muitas vezes, mas eu tentei algumas das outras soluções (por exemplo, executando o apt-get -f install, o apt-get update, o apt-get upgrade, comentando os PPAs no sources.list) .

Aqui está o conteúdo de minhas sources.list

# deb cdrom:[Ubuntu 16.04.2 LTS _Xenial Xerus_ - Release amd64 (20170215.2)]/ xenial main restricted

# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to
# newer versions of the distribution. deb http://us.archive.ubuntu.com/ubuntu/ xenial main restricted
# deb-src http://us.archive.ubuntu.com/ubuntu/ xenial main restricted

## Major bug fix updates produced after the final release of the
## distribution. deb http://us.archive.ubuntu.com/ubuntu/ xenial-updates main restricted
# deb-src http://us.archive.ubuntu.com/ubuntu/ xenial-updates main restricted

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team. Also, please note that software in universe WILL NOT receive any
## review or updates from the Ubuntu security team. deb http://us.archive.ubuntu.com/ubuntu/ xenial universe
# deb-src http://us.archive.ubuntu.com/ubuntu/ xenial universe deb http://us.archive.ubuntu.com/ubuntu/ xenial-updates universe
# deb-src http://us.archive.ubuntu.com/ubuntu/ xenial-updates universe

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu 
## team, and may not be under a free licence. Please satisfy yourself as to 
## your rights to use the software. Also, please note that software in 
## multiverse WILL NOT receive any review or updates from the Ubuntu
## security team. deb http://us.archive.ubuntu.com/ubuntu/ xenial multiverse
# deb-src http://us.archive.ubuntu.com/ubuntu/ xenial multiverse deb http://us.archive.ubuntu.com/ubuntu/ xenial-updates multiverse
# deb-src http://us.archive.ubuntu.com/ubuntu/ xenial-updates multiverse

## N.B. software from this repository may not have been tested as
## extensively as that contained in the main release, although it includes
## newer versions of some applications which may provide useful features.
## Also, please note that software in backports WILL NOT receive any review
## or updates from the Ubuntu security team.
# deb-src http://us.archive.ubuntu.com/ubuntu/ xenial-backports main restricted universe multiverse

## Uncomment the following two lines to add software from Canonical's
## 'partner' repository.
## This software is not part of Ubuntu, but is offered by Canonical and the
## respective vendors as a service to Ubuntu users.
# deb http://archive.canonical.com/ubuntu xenial partner
# deb-src http://archive.canonical.com/ubuntu xenial partner

deb http://security.ubuntu.com/ubuntu xenial-security main restricted
# deb-src http://security.ubuntu.com/ubuntu xenial-security main restricted deb http://security.ubuntu.com/ubuntu xenial-security universe
# deb-src http://security.ubuntu.com/ubuntu xenial-security universe deb http://security.ubuntu.com/ubuntu xenial-security multiverse
# deb-src http://security.ubuntu.com/ubuntu xenial-security multiverse

Eu também tenho PPAs em /etc/apt/sources.list.d:

  • dropbox.list
  • gerardpuig-ubuntu-ppa-xenial.list
  • atlassian-hipchat4.list
  • jonathonf-ubuntu-python-3_6-xenial.list
  • libreoffice-ubuntu-ppa-xenial.list
  • pgdg.list

Eu também notei que mesmo que eu executei update / upgrade / dist-upgrade e rebooted, quando eu logar no TTY1, ele ainda diz que eu tenho 94 pacotes para atualizar.

A única coisa que eu estava fazendo antes disso era trabalhar com algum código python. Eu não acho que fiz nenhuma alteração embora. Eu mudei o link simbólico do Python para apontar para o Python2, mas mudei de volta para o Python3 e infelizmente isso não corrigiu nada.

Obrigado.

    
por Brooks 29.05.2017 / 07:33

3 respostas

3

Para alternar entre a versão 3.X do Python, execute:

sudo update-alternatives --config python3

Para restaurar as atualizações de software, basta digitar o número do python 3.5.

    
por BXL 08.09.2017 / 20:48
1

Acontece que, em algum momento após a instalação do python3, eu mudei o link / usr / bin / python3 para apontar para python3.6 em vez do tempo de execução python3.5 padrão.

Redefinir o symlink para apontar para /usr/bin/python3.5 corrigiu tudo.

    
por Brooks 01.06.2017 / 03:51
0

para ser preciso, no meu caso ajudou: Abra o Terminal (ou UXTerm ou Xterm se o Terminal não funcionar) e digite dois comandos:

sudo rm /usr/bin/python3
sudo ln -s /usr/bin/python3.5 /usr/bin/python3
    
por Artur 16.08.2018 / 21:08