O Ubuntu 13.04 não pode abrir software e atualizações / fontes de software

3

Estou usando o MacBook Air Mid 2012 executando o Single OS, que é o Ubuntu (Raring Ringtail). Já faz um mês que estou usando o Ubuntu e tudo funciona bem, recentemente não consigo abrir software & amp; atualizações, quando clico ele não aparece / aberto. Quando abro Ubuntu Software Center - > Edit - > Software Sources , mais uma vez não abre.

Mas quando eu abro o Terminal, digite

sudo software-properties-gtk

aparece / abre. Estou em sarilhos? Algo dá errado?

Nota: Instalando o software do Ubuntu Software Center, instalando a partir do terminal, a abertura do Software Updater funciona bem. Realmente ama o Ubuntu!

Saída do terminal quando digito:

sudo dpkg-reconfigure software-center :

Updating software catalog...this may take a moment.
INFO:softwarecenter.db.pkginfo_impl.aptcache:aptcache.open()

WARNING:softwarecenter.db.update:The file: '/usr/share/app-install/desktop/sonic-visualiser:x-sonicvisualiser.desktop' could not be read correctly. The application associated with this file will not be included in the software catalog. Please consider raising a bug report for this issue with the maintainer of that application

WARNING:softwarecenter.db.update:The file: '/usr/share/app-install/desktop/workrave:workrave.desktop' could not be read correctly. The application associated with this file will not be included in the software catalog. Please consider raising a bug report for this issue with the maintainer of that application

WARNING:softwarecenter.db.update:The file: '/usr/share/app-install/desktop/sonic-visualiser:x-sonicvisualiser-layer.desktop' could not be read correctly. The application associated with this file will not be included in the software catalog. Please consider raising a bug report for this issue with the maintainer of that application

Software catalog update was successful.

    
por Andzt 15.10.2013 / 13:18

1 resposta

2

De acordo com warning , parece ser um bug porque alguns dos aplicativos nos repositórios não foram atualizados / lidos corretamente. Como o post sugere, você deve considerar lançar um bug .

Mas antes disso, não é ruim tentar resolver o problema. Sugiro que você remova completamente software-center e instale novamente, se não se importar.

Por favor, siga executar os seguintes comandos no terminal para remover / instalar:

sudo apt-get autoremove software-center
sudo apt-get --purge remove software-center
sudo apt-get autoclean && sudo apt-get autoremove
rm -r ~/.config/software-center
sudo apt-get update
sudo apt-get -f install software-center

Apenas em um caso, instale o synaptic e verifique se você será capaz de abrir Software & Updates através disso. Verifique também se você tem alguns pacakges quebrados ou residuais.

Eu gostaria que isso ajudasse você a corrigir seu problema. Responda se algo der errado.

    
por Saurav Kumar 15.10.2013 / 20:07