Shell

如何在 Debian 中從 shell 添加儲存庫?

  • January 3, 2019

在 Ubuntu 中,可以通過以下命令添加儲存庫 -

sudo add-apt-repository ppa:yannubuntu/boot-repair

由於 Ubuntu 基於 Debian 程式碼庫,我希望在 Debian 中也可以使用,但事實並非如此。

  • 這是什麼原因?
  • 還有其他一些我可以用來實現相同目的的 shell 命令嗎?

注意:我知道我可以編輯/etc/apt/sources.list,但我想從 shell 中實現這一點。我還想知道為什麼當程式碼庫相同時相同的命令不起作用。

Debian Jessie 及更高版本 (2014-)

正如@voltagex 在評論中指出的那樣,現在可以在software-properties-common包中找到它:

sudo apt-get install software-properties-common

Debian Wheezy 及更早版本:

該程序在 Debianadd-apt-repository **中可用。**它在python-software-properties包裝中:

sudo apt-get install python-software-properties

它在 0.75 版中被添加到該軟體包中。Debian Stable (‘squeeze") 中的目前版本是 0.60,所以它沒有它。Debian Testing (“wheezy”) 中的目前版本是 0.82.7.1debian1,所以它在那裡可用。

引用自:https://unix.stackexchange.com/questions/45879