Instalando pacotes do LMDE no debian wheezy

0

Eu baixei o thunderbird do repositório LMDE e tentei instalá-lo na minha máquina wheezy debian, usando o apt-get install Eu recebi uma tonelada dessa saída de lixo;

Note, selecting 'iceape-l10n-cs' for regex '.'
Note, selecting 'libhugs-time' for regex '.'
Note, selecting 'libghc-comonads-fd-prof-2.1.1.2-02108' for regex '.'
Note, selecting 'libglobus-gram-protocol-dev' for regex '.'
Note, selecting 'libgeomview-dev' for regex '.'
Note, selecting 'python-flufl.enum-doc' for regex '.'
Note, selecting 'libpath-utils-dev' for regex '.'
Note, selecting 'composite-data' for regex '.'
Note, selecting 'gimp-svg' for regex '.'
Note, selecting 'libgudev1.0-cil' for regex '.'
Note, selecting 'libfile-sharedir-perl' for regex '.'
Note, selecting 'python-reportlab' for regex '.'

e quando eu uso o dpkg -i eu entendo isso;

root@A215:/home/steven/Downloads# dpkg -i      thunderbird_24.2.0~linuxmint2+lmde_amd64.deb 
dpkg: regarding thunderbird_24.2.0~linuxmint2+lmde_amd64.deb containing     thunderbird:
hunspell-en-us conflicts with thunderbird
thunderbird (version 24.2.0~linuxmint2+lmde) is to be installed.

dpkg: error processing thunderbird_24.2.0~linuxmint2+lmde_amd64.deb (--    install):
conflicting packages - not installing thunderbird
Errors were encountered while processing:
thunderbird_24.2.0~linuxmint2+lmde_amd64.deb

De acordo com o Linux Mint, os pacotes binários são 100% compatíveis com o debian ...

Alguma idéia?

    
por lanman 04.01.2014 / 23:05

1 resposta

1

tente:

$ sudo apt-get install -f

Isso tentará consertar as coisas.

-f, --fix-broken
    Fix; attempt to correct a system with broken dependencies in place. This 
    option, when used with install/remove, can omit any packages to permit 
    APT to deduce a likely solution. If packages are specified, these have 
    to completely correct the problem. The option is sometimes necessary 
    when running APT for the first time; APT itself does not allow broken 
    package dependencies to exist on a system. It is possible that a 
    system's dependency structure can be so corrupt as to require manual 
    intervention (which usually means using dselect(1) or dpkg --remove to 
    eliminate some of the offending packages). Use of this option together 
    with -m may produce an error in some situations. Configuration Item: 
    APT::Get::Fix-Broken.

Em seguida, remova o pacote hunspell-en-us .

$ sudo apt-get remove hunspell-en-us 

Em seguida, instale o arquivo thunderbird .deb .

$ dpkg -i thunderbird_24.2.0~linuxmint2+lmde_amd64.deb
    
por 04.01.2014 / 23:46