Acabou de instalar o Ubuntu 16.04 mas nenhum centro de software

1

Instalado o Ubuntu 16.04 aqui estão minhas especificações:

OS: Ubuntu 16.04 LTS x86_64
Kernel: 4.4.0-21-generic
Uptime: up 17 hours, 39 minutes
Packages: 3268
Shell: /usr/bin/fish 
Resolution: 1366x768
Desktop Environment: XFCE
Window Manager: Xfwm4
Theme: Numix Solarized [GTK2], Arc-Dark-Solid [GTK3] 
Icons: Numix-Circle [GTK2], Numix-Circle-Light [GTK3] 
CPU: E1-2100 APU (2) @ 1.0GHz
GPU: AMD KabiniRadeon HD 8210  
Memory: 1326MB / 3418MB

Quando reiniciei depois de fazer a atualização, o Ubuntu Software Center ainda estava lá e caiu quando aberto. Então eu desinstalei e reiniciei novamente, mas o gnome software center ainda não estava lá. Então eu tentei instalá-lo usando sudo apt install gnome-software mas o que eu consegui foi isso:

Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 gnome-software : Depends: appstream but it is not installable
                  Depends: libgnome-desktop-3-12 (>= 3.17.92) but it is not installable
                  Depends: libgtk-3-0 (>= 3.18) but 3.16.7-0ubuntu3 is to be installed
E: Unable to correct problems, you have held broken packages.

Por favor, avise!

    
por Michael Smith 22.04.2016 / 21:04

2 respostas

1

Você não tem nenhuma fonte de software configurada, o que significa que algo deu errado com sua instalação. Como pode haver mais problemas, eu instalaria o sistema novamente. Certifique-se de usar uma imagem oficial atualizada do Xubuntu.

Se você quiser tentar reparar seu sistema, você pode usar, por exemplo, o link para criar um novo arquivo sources.list

Depois de salvar o novo /etc/apt/sources.list run

sudo apt-get update
sudo apt-get dist-upgrade

apt-get deve oferecer-lhe para atualizar alguns pacotes. Faça isso e, em seguida, execute

sudo apt-get install xubuntu-desktop

para obter todos os softwares instalados para o Xubuntu por padrão.

    
por Florian Diesch 22.04.2016 / 22:11
0

Eu tenho a mesma falha com o meu upgrade para o 16.04 LTS. Eu tentei várias maneiras como:

sudo apt-get install -f

mas alguns pacotes permanecem não instalados.

Eu consertei meu upgrade reinstalando todos os pacotes. Você deve excluir os pacotes libgtk-3-* do processo de instalação, porque eles têm falhas de dependência.

sudo apt-get --reinstall install $(dpkg-query -f '${binary:Package}\n' -W | grep -v "libgtk-3")
    
por Paul-A 05.05.2016 / 18:37