Carly Linux Nvidiaドライバの問題

Carly Linux Nvidiaドライバの問題

Kaliが提供するものを使用しようとしましたが、サポートされていない入力を提供し、原因が何であるかわかりません。それはまったく役に立たなかったので、公式のnvidiaドライバをインストールすることにしました。実際に動作するものが見つからないようです。 Kaliのドキュメントはガイドを提供していますが、私のcudaがサポートされている場合にのみ機能します。ドライバが動作しません。レガシードライバーなので、以前の方法を使ってみました。つまり、実行可能ファイルをダウンロードして手動でインストールし、nouveauをブロックし、lightdmを停止してtty1に切り替えましたが、カーネルソースツリーが見つからないため、エラーが発生しました。簡単な "apt-get install nvidia-driver"を使ってnvidiaドライバをインストールしましたが、インストールされていますが、使用されていないとマークされました。他のドライバを無効にしようとしましたが、ドライバが多すぎます。ここにnouveauを無効にした後に推測したすべての関連情報が必要です。 NVIDIAドライバのインストール

uname -r
5.7.0-kali1-amd64

lspci -v | grep driver
        Kernel driver in use: pcieport
        Kernel driver in use: e1000e
        Kernel driver in use: uhci_hcd
        Kernel driver in use: uhci_hcd
        Kernel driver in use: ehci-pci
        Kernel driver in use: snd_hda_intel
        Kernel driver in use: pcieport
        Kernel driver in use: uhci_hcd
        Kernel driver in use: uhci_hcd
        Kernel driver in use: uhci_hcd
        Kernel driver in use: ehci-pci
        Kernel driver in use: lpc_ich
        Kernel driver in use: ahci
        Kernel driver in use: i801_smbus

lspci -s 01:00 -v
01:00.0 VGA compatible controller: NVIDIA Corporation G96CGL [Quadro FX 580] (rev a1) (prog-if 00 [VGA controller])
        Subsystem: NVIDIA Corporation G96CGL [Quadro FX 580]
        Flags: fast devsel, IRQ 11, IOMMU group 1
        Memory at fd000000 (32-bit, non-prefetchable) [size=16M]
        Memory at c0000000 (64-bit, prefetchable) [size=512M]
        Memory at fa000000 (64-bit, non-prefetchable) [size=32M]
        I/O ports at dc80 [size=128]
        Expansion ROM at 000c0000 [disabled] [size=128K]
        Capabilities: <access denied>
        Kernel modules: nvidia

ベストアンサー1

私にとって、Kali Linux 2020.4バージョンでは、グラフィックカードGeforce gt210を使用して、ソリューションは@Stweartが提案したものとほぼ同じでした。私のグラフィックカード(Nvidiaのウェブサイトにあります)に合った正しいNvidiaドライバのバージョンをインストールする必要がありましたが、私のグラフィックカードは340.76でした。その後、端末で次のコマンドを実行します。

sudo apt install nvidia-legacy-340xx-driver
sudo apt install nvidia-xconfig
sudo nvidia-xconfig
sudo reboot

それはすべてです。すべてがうまくいきます。

おすすめ記事