Ubuntu

如何在 source.list 中手動插入儲存庫?

  • July 31, 2014

我嘗試使用以下命令添加新的 APT 儲存庫:

add-apt-repository ppa:atareao/atareao

但我收到“找不到命令”錯誤。我嘗試安裝python-software-properties,但它已經安裝:

root@debian:~# apt-get install python-software-properties
Reading package lists... Done
Building dependency tree       
Reading state information... Done
python-software-properties is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.

所以我決定手動將儲存庫添加到source.list,但不知道如何。如何source.list直接編輯?

如果您訪問PPA 的頁面,它將向您顯示要手動插入的行source.list

點擊顯示以下內容的技術詳細資訊

在此處輸入圖像描述

選擇您的 Ubuntu 版本並將這些行複制/粘貼到source.list文件的底部。

在你發帖一年後,我在 Ubuntu 12.10 上遇到了同樣的問題,我想出瞭如何繞過這個問題(不是真的要解決它),所以我花時間發布一個回复只是為了記錄。我們永遠不知道,是否有人在我之後面臨這個問題。

FIX(某種)

apt-get install software-properties-common

解釋(種類)

似乎此軟體包存在依賴性問題 https://bugs.launchpad.net/ubuntu/+source/software-properties/+bug/1024408

證明(種類)

您可以看到 python-software-properties 不包含 add-apt-repository 二進製文件:

dpkg -L python-software-properties

雖然 software-properties-common 確實:

dpkg -L software-properties-common

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