Como corrijo o erro do APT “Os seguintes pacotes possuem dependências não atendidas”? [fechadas]

2

Eu comprei um laptop System76. No entanto, toda vez que tento instalar algo, recebo esse erro (ou algo similar):

mike@mike-Lemur:~$ sudo apt-get install curl
Reading package lists... Done 
Building dependency tree
Reading state information... Done
curl is already the newest version (7.47.0-1ubuntu2.2). 
You might want to run 'apt-get -f install' to correct these: 
The following packages have unmet dependencies: 
 libgcc1:i386 : Depends: libc6:i386 (>= 2.2.4) but it is not going to be installed 
 libgcrypt20:i386 : Depends: libc6:i386 (>= 2.15) but it is not going to be installed 
 libgpg-error0:i386 : Depends: libc6:i386 (>= 2.15) but it is not going to be installed 
 liblzma5:i386 : Depends: libc6:i386 (>= 2.4) but it is not going to be installed 
 libpcre3:i386 : Depends: libc6:i386 (>= 2.4) but it is not going to be installed 
 libselinux1:i386 : Depends: libc6:i386 (>= 2.8) but it is not going to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).

Como corrijo este problema?

    
por Mike Williams 30.05.2017 / 20:55

1 resposta

2

Execute este comando no seu sistema:

sudo apt-get update && sudo apt-get -f install && sudo apt-get dist-upgrade 
    
por Emma Marshall 31.05.2017 / 00:17