Debian Stretchの「gcc-6」とNvidiaドライバ

Debian Stretchの「gcc-6」とNvidiaドライバ

390.48-2~bpo9+3Stretch Backports()から無料でNvidiaドライバをインストールしようとしています。https://packages.debian.org/stretch-backports/nvidia-driver

# apt-get install -t stretch-backports nvidia-driver

エラーが発生しました:

Building for 4.16.0-0.bpo.1-amd64
Building initial module for 4.16.0-0.bpo.1-amd64
Error! Bad return status for module build on kernel: 4.16.0-0.bpo.1-amd64 (x86_64)
Consult /var/lib/dkms/nvidia-current/390.48/build/make.log for more information.

私が見つけたもの/var/lib/dkms/nvidia-current/390.48/build/make.log

Compiler version check failed:

The major and minor number of the compiler used to
compile the kernel:

gcc version 6.3.0 20170516 (Debian 6.3.0-18+deb9u1)

does not match the compiler used here:

gcc-6 (Debian 6.3.0-18+deb9u1) 6.3.0 20170516
Copyright (C) 2016 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.


It is recommended to set the CC environment variable
to the compiler that was used to compile the kernel.

これは、カーネルのコンパイルに使用されたgccのバージョンと同じでなければなりません。

cat /proc/version 
Linux version 4.16.0-0.bpo.1-amd64 ([email protected]) (gcc version 6.3.0 20170516 (Debian 6.3.0-18+deb9u1)) #1 SMP Debian 4.16.5-1~bpo9+1 (2018-05-06)

Nvidiaパッケージを削除しました。# apt-get remove --purge .*nvidia.*

それからもう一度やり直してください。# IGNORE_CC_MISMATCH=1 apt-get install -t stretch-backports nvidia-driver

別のエラーは次のとおりですmake.log

The C compiler ' gcc-6' does not appear to be able to
create object files.  Please make sure you have 
your Linux distribution's libc development package
installed and that ' gcc-6' is a valid C compiler
name.

*** Failed CC sanity check. Bailing out! ***

update-alternativesポイントgccccatの設定はgcc-4.9効果がありません。

# CC=/usr/bin/gcc-6 IGNORE_CC_MISMATCH=1 apt-get install -t stretch-backports nvidia-driver

役に立たない。

# CC=/usr/bin/gcc-4.9 IGNORE_CC_MISMATCH=1 apt-get install -t stretch-backports nvidia-driver

まだエラー発生The C compiler ' gcc-6' does not appear to be able to create object files.

他の試みでも言及されたエラーの1つが発生しましたno-pie。これらのフラグは影響を与えましたが、他のエラーが発生しました。https://www.linuxquestions.org/questions/debian-26/%5Bsolved%5D-cannot-compile-nvidia-driver-kernel-does-not-support-pic-mode-4175593548/

ベストアンサー1

おすすめ記事