我正在运行 Ubuntu 18.04.1 LTS,在安装应用程序时遇到问题ecrypt-utils
。请参阅以下输出:
ubuntu@ubuntu:~$ sudo apt install ecryptfs-utils
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package ecryptfs-utils is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package 'ecryptfs-utils' has no installation candidate
任何帮助深表感谢。
答案1
回答
包裹ecryptfs-utils
在存储库中可用universe
。
要启用 Universe repo,请执行以下操作:
sudo add-apt-repository universe
sudo apt update
sudo apt install ecryptfs-utils
进一步解释:
查找包
您可以在以下位置查找包https://packages.ubuntu.com/确保您选择了正确的分布(在您的情况下是Bionic,它对应于18.04)。
当您搜索时,ecryptfs-utils
您会得到以下内容:
软件包 ecryptfs-utils
[bionic (18.04LTS)][1] (misc): ecryptfs cryptographic filesystem (utilities) [universe] 111-0ubuntu5: amd64 arm64 armhf i386 ppc64el s390x
如您所见,该软件包在universe
存储库中可用于 18.04。您可以universe
通过上述步骤启用。
存储库
存储库(通常缩写为 repo)是 Ubuntu 为存储软件的档案库起的名字。Ubuntu 使用四个主要存储库:
- 主要的
- 宇宙
- 受限制的
- 多元宇宙
该universe
存储库包含“社区维护的免费开源软件”。有关更多信息,请参阅:https://help.ubuntu.com/community/Repositories/Ubuntu