Repository
Remi:哪個儲存庫包含什麼?
如果我添加 remi 儲存庫,我會在聲明以下儲存庫
dnf install https://rpms.remirepo.net/enterprise/remi-release-8.rpm
中獲得 3 個文件:/etc/yum.repos.d
remi-modular remi-modular-test remi remi-test remi-debuginfo remi-test-debuginfo remi-safe remi-safe-debuginfo
我遺漏了一些關於如何組織包以及何時使用什麼的介紹性文字。我什麼時候應該使用 remi、remi-safe 或 remi-modular 儲存庫?
作為一般規則,您應該啟用
remi-safe
,remi
andremi-modular
(但所有這三個都應該已經啟用)。這些 repos 一起包含您希望從 remi 安裝的包和模組流。這些回購分解如下:
- remi-safe 包含主要 repos remi 和 remi-modular 中的其他軟體包所需的軟體包,但不包含在您使用的 Linux 發行版中。它被稱為“安全”,因為它不會替換發行版提供的任何包。
- remi 和 remi-modular 包含您感興趣的包。它們可能會替換和覆蓋您的發行版中包含的包和模組流。模組流包含在 remi-modular repo 中,其他包在 remi repo 中。
remi-test 和 remi-modular-test 包含在 remi 和 remi-modular repos 中的一般發布之前正在測試的更新。您通常不會啟用這些,但如果您遇到包問題,您可能會通過這些儲存庫提前訪問更新。
debuginfo repos 包含調試程序或通過自動錯誤報告時使用的 debuginfo RPM。您也不會啟用這些儲存庫;如果需要報告錯誤,ABRT 將自動從它們安裝包,您可以手動安裝它們(例如,自己執行調試器)
dnf debuginfo-install <package>
。