获取软件包 linuxdcpp

获取软件包 linuxdcpp

我尝试使用终端在我的 Ubuntu 14.04 中安装 Linux dc++。但终端中显示以下内容:

Reading package lists... Done

Building dependency tree       

Reading state information... Done

Package linuxdcpp 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 'linuxdcpp' has no installation candidate

如何安装Linuxdc++?

答案1

linuxdcpp已在 Universe 存储库中建立,因此首先启用它。

sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu $(lsb_release -sc) universe"

然后运行这些命令:

sudo apt-get update
sudo apt-get dist-upgrade
sudo apt-get install linuxdcpp

答案2

正如你可以从Ubuntu Apps 条目,该软件包目前仅发布至 13.10 版本。

但是,您可以尝试下载(并在必要时进行修改)旧版本的版本来使其正常工作。为此,请从此处下载适合您的体系结构的最新版本:

http://old-releases.ubuntu.com/ubuntu/pool/universe/l/linuxdcpp/

据我所知,最新版本是 1.1.0-1ubuntu2。下载.deb适合您的架构的 Debian 包(扩展)。使用存档管理器打开它并导航到文件DEBIAN/control。在那里,您将找到一行包含包依赖项的内容。

如您所见,每个依赖项都有以 为前缀的版本>=,因此您可以安装它,即使安装了依赖项的更高版本。

只需使用以下命令安装包

sudo dpkg -i linuxdcpp*.deb
sudo apt-get install -f

如果依赖项也不可用,请按照之前的方式获取它们。然后运行

sudo dpkg --configure -a

完成存在依赖性问题的软件包的安装。

相关内容