Instalando crossvc está dando erro de pacotes quebrados [duplicado]

0

Estou tendo o Ubuntu 14.04 LTS. Ao tentar instalar o crossvc , estou recebendo um erro de pacote quebrado.

Eu tentei encontrar soluções e tentei todas as etapas sugeridas em diferentes postagens. Mas sem sucesso.

  • LOGS para sudo apt-get install crossvc

    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:
     crossvc : Depends: libqt3-mt (>= 3:3.3.8-b) but it is not installable
    E: Unable to correct problems, you have held broken packages.
    
  • LOGS para sudo aptitude install crossvc

    The following NEW packages will be installed:
      crossvc{b} libfam0{a} 
    0 packages upgraded, 2 newly installed, 0 to remove and 0 not upgraded.
    Need to get 1300 kB of archives. After unpacking 4048 kB will be used.
    The following packages have unmet dependencies:
     crossvc : Depends: libqt3-mt (>= 3:3.3.8-b) which is a virtual package.
    The following actions will resolve these dependencies:
    
         Keep the following packages at their current version:
    1)     crossvc [Not Installed]                            
    
    
    
    Accept this solution? [Y/n/q/?] n
    
    *** No more solutions available ***
    
    The following actions will resolve these dependencies:
    
         Keep the following packages at their current version:
    1)     crossvc [Not Installed]                            
    
    
    
    Accept this solution? [Y/n/q/?] 
    
  • LOGS ao instalar usando o Ubuntu Software Center

    Package dependencies cannot be resolved
    
    This error could be caused by required additional software packages which are missing or not installable. Furthermore there could be a conflict between software packages which are not allowed to be installed at the same time.
    
    Details:
    The following packages have unmet dependencies:
    
    crossvc: Depends: libc6 (>= 2.4) but 2.19-0ubuntu6 is to be installed
             Depends: libgcc1 (>= 1:4.1.1) but 1:4.9-20140406-0ubuntu1 is to be installed
             Depends: libqt3-mt (>= 3:3.3.8-b) but it is not going to be installed
             Depends: libstdc++6 (>= 4.2.1) but 4.8.2-19ubuntu1 is to be installed
    
  • Outra opção testada

    Até eu tentei fazer o abaixo para resolver o pacote corrompido [referenciado em postagens diferentes], mas sem sucesso.

    sudo dpkg --configure -a
    sudo apt-get clean && sudo apt-get update
    dpkg --get-selections | grep hold [ no package listed ]
    
por Satish 03.07.2014 / 12:44

2 respostas

2

libqt3-mt é o antigo Qt3 deprecated lib em favor de Qt4. Está disponível apenas em repositórios Lucid e Precise:

link

  1. Faça o download do pacote Precise de (escolha um espelho):

    link

    Exemplo, 64 bits:

    wget http://de.archive.ubuntu.com/ubuntu/pool/main/q/qt-x11-free/libqt3-mt_3.3.8-b-8ubuntu3_amd64.deb
    

    32Bit:

    wget http://de.archive.ubuntu.com/ubuntu/pool/main/q/qt-x11-free/libqt3-mt_3.3.8-b-8ubuntu3_i386.deb
    
  2. Instale-o, 64 bits ::

    sudo dpkg -i libqt3-mt_3.3.8-b-8ubuntu3_amd64.deb
    

    32 bits:

    sudo dpkg -i libqt3-mt_3.3.8-b-8ubuntu3_i386.deb
    

Tente com crossvc novamente. Deve funcionar como eu testei no meu Ubuntu 14.04.

Ainda faltam algumas dependências, pesquisa usando o link :

por user.dz 06.07.2014 / 22:23
0

// instalando em 32 bits

$ wget http://security.ubuntu.com/ubuntu/pool/multiverse/c/crossvc/crossvc_1.5.2-2_i386.deb
$ sudo dpkg -i crossvc_1.5.2-2_i386.deb

// 64 bits

$ wget http://security.ubuntu.com/ubuntu/pool/multiverse/c/crossvc/crossvc_1.5.2-2_amd64.deb
$ sudo dpkg -i crossvc_1.5.2-2_amd64.deb

// se você não tiver treinado com você, espere pela próxima versão dele

não é problema seu problema no repositório

    
por hwez 03.07.2014 / 13:29