無法找到 Citrix 安裝的軟體包

無法找到 Citrix 安裝的軟體包

我正在嘗試將 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

相關內容