找不到 Citrix 安装的程序包

找不到 Citrix 安装的程序包

我正在尝试在 Ubuntu 14.04(64 位)上安装 Citrix 接收器,遵循 Ubuntu 的文档。第一行指令说要获取这些必需的包:

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

相关内容