web-dev-qa-db-ja.com

Ubuntu 14.04-icedtea-6-plugin:i386:依存:icedtea-netx:i386(= 1.5-1ubuntu1)

まず第一に、私はubuntuの初心者です。 Javaアプリケーションを実行して最新バージョンをインストールする必要がありました。その後、.jarファイルを実行しようとしましたが、機能しましたが、インストールされたファイルを実行しようとすると、エラーが発生します'アプリケーションは32ビットであり、Java(およびubuntu)のインストールは64ビットです。しばらくの間グーグルで調べたところ、icedteaをインストールする必要があることがわかりました。そうしようとしましたが、成功しませんでした。

Sudo apt-get clean
Sudo apt-get autoremove

くれます

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:
icedtea-6-plugin:i386 : Depends: icedtea-netx:i386 (= 1.5-1ubuntu1) but it is not installable
E: Unmet dependencies. Try using -f.

その後、試してみました

Sudo apt-get -f autoremove

そして私を返します

Reading package lists... Done
Building dependency tree       
Reading state information... Done
Correcting dependencies... Done
The following extra packages will be installed:
  icedtea-netx:i386
The following NEW packages will be installed:
  icedtea-netx:i386
0 upgraded, 1 newly installed, 0 to remove and 55 not upgraded.
1 not fully installed or removed.
Need to get 19,5 kB of archives.
After this operation, 155 kB of additional disk space will be used.
Do you want to continue? [Y/n] y
Get:1 http:// ec. archive. ubuntu. com/ ubuntu/ trusty/main icedtea-netx i386 1.5-1ubuntu1 [19,5 kB]
Fetched 19,5 kB in 15s (1.231 B/s)         
(Reading database ... 187313 files and directories currently installed.)
Preparing to unpack .../icedtea-netx_1.5-1ubuntu1_i386.deb ...
Unpacking icedtea-netx:i386 (1.5-1ubuntu1) ...
dpkg: error processing archive /var/cache/apt/archives/icedtea-netx_1.5-1ubuntu1_i386.deb (--unpack):
 trying to overwrite shared '/usr/bin/policyeditor', which is different from other instances of package icedtea-netx:i386
Errors were encountered while processing:
 /var/cache/apt/archives/icedtea-netx_1.5-1ubuntu1_i386.deb
W: Duplicate sources.list entry http://archive.canonical.com/ubuntu/ trusty/partner AMD64 Packages (/var/lib/apt/lists/archive. canonical. com_ubuntu_dists_trusty_partner_binary-AMD64_Packages)
W: Duplicate sources.list entry http:// archive. canonical. com /ubuntu/ trusty/partner i386 Packages (/var/lib/apt/lists/archive. canonical .com_ ubuntu_dists_trusty_partner_binary-i386_Packages)
W: You may want to run apt-get update to correct these problems
E: Sub-process /usr/bin/dpkg returned an error code (1)

(ターミナルからコピーしたように正確に投稿できなかったため、リンクにいくつかのスペースを追加しました)

試しました

Sudo apt-get update

そして、まだ同じ問題。

このパッケージを削除する方法とコンソール経由の依存関係についてのアイデアはありますか?またはそれが不可能な場合は、手動で削除する方法を教えてください。

前もって感謝します!パブロ

1
Pablo

これを試して

須藤-i

dpkg -i --force-overwrite /var/cache/apt/archives/icedtea-netx_1.5-1ubuntu1_i386.deb

apt-get autoremove

apt-get update

apt-get upgrade

「Sudo apt-get -f install」とその後に何も与えずにいることが明確に示されています。これにより、不要なパッケージが自動的にクリアされ、問題ありません。それは私のために働いた私を信じてください。

0
user3404692