Pacman

sudo pacman -S reflector 在 artix linux 上返回“target not found reflector”

  • August 18, 2021

sudo pacman -Syu返回

system is up to date
world is up to date
galaxy is up to date
::starting full system upgrade
there is nothing to do`

然後sudo pacman -S reflector返回error: target not found: reflector

我在嘗試安裝時也遇到了同樣的錯誤libreoffice-still

看起來您沒有community啟用儲存庫。至少在我的 Arch 系統上,這reflector就是:

$ pacman -Ss reflector
community/reflector 2021.4-1
   A Python 3 module and script to retrieve and filter the latest Pacman mirror list.

我剛剛查看了Artix 的文件,發現:

自 2021 年 6 月起,預設情況下禁用所有 Arch 儲存庫。要啟用它們,請安裝artix-archlinux-support並按照螢幕上的說明啟動所需的 Arch 儲存庫,很可能是額外的、社區和 multilib,其中包含 Artix 儲存庫中尚未包含的包。不要單獨啟用社區,因為它包含額外依賴於其他人的包。

因此,據此,您應該執行:

sudo pacman -S artix-archlinux-support

然後按照任何提示至少啟用extra並且community可能還啟用multilib。完成此操作後,執行pacman -Sy以載入新源,然後您應該能夠按預期安裝:

sudo pacman -S reflector

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