No Synaptic (Debian Wheezy) como reagir à mensagem “… pacote quebrado…”?

1

Eu tenho um problema de synaptoc , com o Debian-Wheezy.

    uname -a
    Linux primergy 3.2.0-4-686-pae #1 SMP Debian 3.2.65-1+deb7u1 i686 GNU/Linux

Tentando aplicar a instalação para libaudit1 , diz:

    Could not apply changes!
    Fix broken packages first.*

Eu editei /etc/apt/sources.list e coloquei algumas entradas adicionais (de uma pergunta semelhante) aqui:

    # problem with synaptic 2015-05-21 (from stack-exchange):

    deb http://ftp.ua.debian.org/debian jessie main # contrib non-free # 
    #deb-src http://ftp.ua.debian.org/debian jessie main # contrib non-free # 
    deb http://ftp.ua.debian.org/debian jessie-updates main # contrib non-free #
    #deb-src http://ftp.ua.debian.org/debian jessie-updates main # contrib non-free #

Eu apenas tentei e o erro ocorreu novamente! nenhuma mudança:)

Aptidão deu:

   root@primergy:/home/kampmann# aptitude why libaudit1
   i   adduser Depends passwd (>= 1:4.0.12)  
   p   passwd  Depends libaudit1 (>= 1:2.2.1)
   root@primergy:/home/kampmann# aptitude why-not libaudit1
   Unable to find a reason to remove libaudit1.
   root@primergy:/home/kampmann# aptitude why passwd   
   i   libuuid1 Depends passwd
   root@primergy:/home/kampmann# aptitude why libuuid1
   i   libxapian22 Depends libuuid1 (>= 2.16)
   root@primergy:/home/kampmann# aptitude why adduser 
   i   red5-server Depends adduser (>= 3.11)
   root@primergy:/home/kampmann# 

Existe alguma razão pela qual não consigo instalar libaudit1

Geralmente falado: Eu queria atualizar meu sistema e existem cerca de 1800 mensagens desse tipo!

Em segundo lugar, fiz o seguinte:

root@primergy:/home/kampmann# apt-get install libaudit1
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:
 libglib2.0-0 : Breaks: glib-networking (< 2.33.12) but 2.32.3-1 is to be installed
N: Ignoring file 'skype-debian.old' in directory '/etc/apt/sources.list.d/' as it has an invalid filename extension
N: Ignoring file 'mono' in directory '/etc/apt/sources.list.d/' as it has no filename extension
N: Ignoring file 'skype-debian.old' in directory '/etc/apt/sources.list.d/' as it has an invalid filename extension
N: Ignoring file 'mono' in directory '/etc/apt/sources.list.d/' as it has no filename extension
E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by held packages.
root@primergy:/home/kampmann# 

Minha pergunta: eu preciso atualizar o Debian Wheezy para a próxima versão?

    
por Jörg Kampmann 21.05.2015 / 13:42

1 resposta

0

Você comenta contrib e non-free , Use as seguintes sources.list:

A regra das primeiras fontes é:

deb http://ftp.debian.org/debian/ wheezy main contrib non-free

Então:

apt-get update ; apt-get -f install ; apt-get install libaudit1;
    
por 21.05.2015 / 14:38