Citrix インストール用のパッケージが見つかりません

Citrix インストール用のパッケージが見つかりません

Ubuntuの指示に従って、CitrixレシーバーをUbuntu 14.04(64ビット)にインストールしようとしています。ドキュメント手順の最初の行には、次の必須パッケージを取得するように書かれています。

sudo apt-get install libmotif4:i386 nspluginwrapper lib32z1 libc6-i386 libxp6:i386 libxpm4:i386 libasound2:i386

しかし、その行を貼り付けると、次のエラーが発生します。

Reading state information... Done
E: Unable to locate package libmotif4
E: Unable to locate package libxp6
E: Unable to locate package libxpm4
E: Unable to locate package libasound2

私のリポジトリ設定は以下の通りです。何か不足しているものはありますか? そうでなければ、これらをインストールするために何をする必要がありますか?

$ cat /etc/apt/sources.list
deb cdrom:[Ubuntu 14.04 LTS _Trusty Tahr_ - Release amd64 (20140417)]/ precise main restricted
deb cdrom:[Ubuntu 14.04 LTS _Trusty Tahr_ - Release amd64 (20140417)]/ trusty main restricted
deb-src http://archive.ubuntu.com/ubuntu trusty main restricted #Added by software-properties
deb http://archive.ubuntu.com/ubuntu/ trusty main restricted universe multiverse
deb-src http://archive.ubuntu.com/ubuntu/ trusty main restricted universe multiverse #Added by software-properties
deb http://security.ubuntu.com/ubuntu/ trusty-security main restricted universe multiverse
deb-src http://security.ubuntu.com/ubuntu/ trusty-security main restricted universe multiverse #Added by software-properties
deb http://archive.ubuntu.com/ubuntu/ trusty-updates main restricted universe multiverse
deb-src http://archive.ubuntu.com/ubuntu/ trusty-updates main restricted universe multiverse #Added by software-properties
deb http://archive.ubuntu.com/ubuntu/ trusty-proposed main universe restricted multiverse
deb http://archive.ubuntu.com/ubuntu/ trusty-backports main universe restricted multiverse

答え1

マルチアーキテクチャが有効になっていません。次の操作を実行してください。

sudo dpkg --add-architecture i386
sudo apt-get update

関連情報