como não pode instalar o estrangeiro ubuntu 16.04?

0

eu tenho pacote rpm (ex: sqldeveloper-4.0.3.16.84-1.noarch.rpm), mas eu não posso usar 'alien' do ubuntu centro de software quando é que eu tente instalar 'alien', eu tenho um bug:

root@temo:~# sudo apt-get -f install alien

Reading package lists... Done
Building dependency tree       
Reading state information... Done
You might want to run 'apt-get -f install' to correct these:
The following packages have unmet dependencies:
alien : Depends: debhelper (>= 7) but it is not going to be installed
     Depends: rpm (>= 2.4.4-2) but it is not going to be installed
     Depends: rpm2cpio
 skype:i386 : Depends: libc6:i386 (>= 2.3.6-6~) but it is not going to be installed
          Depends: libc6:i386 (>= 2.7) but it is not going to be installed
          Depends: libgcc1:i386 (>= 1:4.1.1) but it is not going to be installed
          Depends: libqt4-dbus:i386 (>= 4:4.5.3) but it is not going to be installed
          Depends: libqt4-network:i386 (>= 4:4.8.0) but it is not going to be installed
          Depends: libqt4-xml:i386 (>= 4:4.5.3) but it is not going to be installed
          Depends: libqtcore4:i386 (>= 4:4.7.0~beta1) but it is not going to be installed
          Depends: libqtgui4:i386 (>= 4:4.8.0) but it is not going to be installed
          Depends: libqtwebkit4:i386 (>= 2.2~2011week36) but it is not going to be installed
          Depends: libstdc++6:i386 (>= 4.2.1) but it is not going to be installed
          Depends: libx11-6:i386 but it is not going to be installed
          Depends: libxext6:i386 but it is not going to be installed
          Depends: libxss1:i386 but it is not going to be installed
          Depends: libxv1:i386 but it is not going to be installed
          Depends: libssl1.0.0:i386 but it is not going to be installed
          Depends: libpulse0:i386 but it is not going to be installed
          Depends: libasound2-plugins:i386 but it is not going to be installed
          Recommends: sni-qt:i386 but it is not going to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).

Plz ajuda na instalação do alien.

    
por Too You 12.03.2017 / 02:49

2 respostas

2

alien geralmente produz dependências insolúveis no pacote que está sendo instalado devido a diferenças na nomenclatura de bibliotecas nos sistemas operacionais Debian e Red Hat, entretanto no Ubuntu 16.04 e em todas as versões suportadas do Ubuntu é possível construir um pacote Debian do Oracle SQL Developer usando sqldeveloper-package dos repositórios padrão do Ubuntu. Abra o terminal e digite:

sudo apt install sqldeveloper-package

Este utilitário exigirá o download do archive independente de arquitetura de http://www.oracle.com/technetwork/developer-tools/sql-developer , identificado como "Oracle SQL Developer para outras plataformas", "Oracle SQL Developer para várias plataformas" ou "Oracle SQL Developer para Linux e Unix" (dependendo em qual versão você está construindo), para criar o pacote Debian a partir de.

    
por karel 12.03.2017 / 03:00
0

Ele está reclamando que o pacote alien precisa (depende):

debhelper version 7 or later (version 9.20160115ubuntu3 is in the repositoires)
rpm version 2.4.4-2 or later (version 4.12.0.1+dfsg1-3build3 is in tyhe repositories)  
rpm2cpio no version specified (version 4.12.0.1+dfsg1-3build3 ...)  

Leia man apt-get , você pode usar --install-suggests ou -o APT::Install-Recommends=1 a apt-get .

    
por waltinator 12.03.2017 / 03:01