firmware-misc-nonfree
特定のLinuxインストールにDebianパッケージをインストールしようとしています。
╰─○ apt install firmware-misc-nonfree
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
Package firmware-misc-nonfree is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package 'firmware-misc-nonfree' has no installation candidate
何かを防いでいるようですが、他の2つのシステムでは問題ありません。
これはの出力ですapt-cache policy
╰─○ apt-cache policy firmware-misc-nonfree
firmware-misc-nonfree:
Installed: (none)
Candidate: (none)
Version table:
20210315-3 -1
-1 http://uk.mirrors.clouvider.net/debian bullseye/non-free amd64 Packages
クラッシュの原因を自動的に見つける方法はありますか?
内容は次のとおりです/etc/apt/sources.list
# updated 2023-03-11-1956 for Debian 11 Bullseye
deb http://uk.mirrors.clouvider.net/debian/ bullseye main contrib non-free
deb-src http://uk.mirrors.clouvider.net/debian/ bullseye main contrib non-free
deb http://security.debian.org/debian-security bullseye-security main contrib non-free
deb-src http://security.debian.org/debian-security bullseye-security main contrib non-free
# bullseye-updates, previously known as 'volatile'
deb http://uk.mirrors.clouvider.net/debian/ bullseye-updates main contrib non-free
deb-src http://uk.mirrors.clouvider.net/debian/ bullseye-updates main contrib non-free
# deb http://uk.mirrors.clouvider.net/debian/ bullseye-backports main contrib non-free
# deb-src http://uk.mirrors.clouvider.net/debian/ bullseye-backports main contrib non-free
私が考えることができる唯一のことは、今回のインストールがVirtualBoxシステムであり、仮想化がそれに関連している可能性があることです。
正しいディレクトリにないいくつかのバイナリファームウェアが必要ですが、他のシステムから起動時にロードできる正しい場所にコピーできます。
Debian パッケージングシステムは、あるパッケージをインストールしたときに別のパッケージが保存、削除、またはブロックされたときに実行されたコマンドログを保持しますか?
私はいくつかの提案を試しましたhttps://askubuntu.com/questions/640986/how-to-get-a-list-of-installed-packages-held-back-from-upgradeしかし、コマンドは何も表示しません。
ベストアンサー1
apt-cache policy firmware-misc-nonfree
パッケージが使用可能で優先順位が-1であることを示します。 -1は、複数の候補の中から(唯一の候補でも)候補に選ばれるのを防ぎます。 ~からapt_preferences(5)
:
APTが優先順位を解釈する方法
[...]
P<0
このバージョンのインストールを防ぐ
リリース候補を直接指定することで、この設定を上書きできます。たとえば、次のパッケージをインストールする必要があります。
apt-get install firmware-misc-nonfree=20210315-3
適切なデフォルト設定に関連する一部の設定が変更された可能性があります。最初に見るのは/etc/apt/preferences
orです/etc/apt/preferences.d/
。