Apt

安裝 FGLRX 後,一些 APT 軟體包沒有出現在 Debian Buster 中。我該如何解決?

  • June 22, 2021

您好 Debian 使用者,

我最近購買了Dell Optiplex 790,安裝了 Debian 10.9 並在其中放入了ATI Saphire 卡。需要驅動程序在顯示尺寸更改時修復螢幕變色,我添加了FGLRX 專有驅動程序。現在我需要設置一些應用程序,例如 OBS studio,但我似乎無法在Synaptic中找到它們。我嘗試手動下載 deb 文件進行安裝,但依賴項與核心包衝突。我想讓突觸恢復擁有完整的主要 Debian 儲存庫包。我怎麼做?

能力來源的輸出:

# deb cdrom:[Debian GNU/Linux 10.9.0 _Buster_ - Official amd64 xfce-CD Binary-1 20210327-10:42]/ buster main 

# deb cdrom:[Debian GNU/Linux 10.9.0 _Buster_ - Official amd64 xfce-CD Binary-1 20210327-10:42]/ buster main 

deb http://deb.debian.org/debian/ buster-backports contrib main 
deb-src http://deb.debian.org/debian/ buster-backports contrib main 

deb http://security.debian.org/debian-security/ buster/updates contrib main 
deb-src http://security.debian.org/debian-security/ buster/updates main contrib 

# buster-updates, previously known as 'volatile'
deb http://deb.debian.org/debian/ buster-updates contrib main 
deb-src http://deb.debian.org/debian/ buster-updates main contrib 

# This system was installed using small removable media
# (e.g. netinst, live or single CD). The matching "deb cdrom"
# entries were disabled at the end of the installation process.
# For information about how to configure apt package sources,
# see the sources.list(5) manual.

您的原始碼中缺少主記憶體儲庫。

您至少需要添加

deb http://deb.debian.org/debian buster main

/etc/apt/sources.list(參見Example sources.list)並重新載入包索引

sudo apt update

在終端中或Ctrl + R在突觸中選擇“重新載入包資訊”()。

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