从第三方存储库安装包

从第三方存储库安装包

我需要安装来自非 ppa 存储库。所以,通常的做法sudo apt-add-repository... & apt-get update不起作用。

当然,我可以从以下位置手动下载所有必要的软件包这里,但我必须手动安装这些包并解决依赖关系。所以,这并不能解决我的问题。

我如何安装这个第三方应用程序?

有趣的是,该存储库的结构重复了 archievev.ubuntu.com 存储库的结构。

答案1

的手册页add-apt-repository说:

   REPOSITORY can  be  either  a  line  that  can  be  added  directly  to
   sources.list(5),  in the form ppa:<user>/<ppa-name> for adding Personal
   Package Archives, or a distribution component to enable.

   In  the   first   form,   REPOSITORY   will   just   be   appended   to
   /etc/apt/sources.list.

因此,我们需要使用完整的源代码行:

sudo add-apt-repository "deb http://repos.lpm.org.ru/kumir2/ubuntu trusty universe"

相关内容