Debian x64 に Skype をインストールする: pkg: 依存関係の問題により Skype の設定ができない

Debian x64 に Skype をインストールする: pkg: 依存関係の問題により Skype の設定ができない

以下を使用してSkypeをインストールしようとしています。このマニュアル。次のコマンドを使用してパッケージを正常にダウンロードしました。

wget -O skype-install.deb http://www.skype.com/go/getskype-linux-deb-64

ただし、パッケージをインストールしようとすると、依存関係に関するいくつかのエラーが発生します。

root@102:~# dpkg -i skype-install.deb
(Reading database ... 27918 files and directories currently installed.)
Preparing to replace skype 4.0.0.8-1 (using skype-install.deb) ...
Unpacking replacement skype ...
dpkg: dependency problems prevent configuration of skype:
 skype depends on lib32stdc++6 (>= 4.1.1-21); however:
  Package lib32stdc++6 is not installed.
 skype depends on lib32asound2 (>> 1.0.14); however:
  Package lib32asound2 is not installed.
 skype depends on ia32-libs; however:
  Package ia32-libs is not installed.
 skype depends on libc6-i386 (>= 2.7-1); however:
  Package libc6-i386 is not installed.
 skype depends on lib32gcc1 (>= 1:4.1.1-21+ia32.libs.1.19); however:
  Package lib32gcc1 is not installed.
 skype depends on ia32-libs-gtk; however:
  Package ia32-libs-gtk is not installed.
dpkg: error processing skype (--install):
 dependency problems - leaving unconfigured
Errors were encountered while processing:
 skype

この問題をどのように解決できますか?

ベストアンサー1

パッケージが失敗した場合構成を使用すると、欠落している依存関係をインストールできますapt-get install -f-fマニュアルに記載されている方法は次のとおりです。

  -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. 

依存関係の構成手順を実行する前にパッケージのインストールが失敗した場合は、パッケージを手動でインストールする必要があります。これはそのパッケージPre-dependsではなくパッケージ宣言によるものです。Depends

おすすめ記事