한 번만 더 해보자

[Linux] ERROR: The Nouveau kernel driver is currently in use by your system. This driver is incompatible with the NVIDIA driver, and must be disabled before proceeding. Please consult the NVIDIA driver README and your Linux distribution's documentation 본문

Linux

[Linux] ERROR: The Nouveau kernel driver is currently in use by your system. This driver is incompatible with the NVIDIA driver, and must be disabled before proceeding. Please consult the NVIDIA driver README and your Linux distribution's documentation

정 하임 2024. 6. 13. 21:43

에러코드

ERROR: The Nouveau kernel driver is currently in use by your system.  This driver is incompatible with the NVIDIA driver, and must be disabled before proceeding.  Please consult the NVIDIA driver README and your Linux distribution's documentation for details on how to correctly disable the Nouveau kernel driver.

 

상황

nvidia-smi를 설치하려는데 위와 같은 에러코드가 발생했다. nouveau가 활성화 되어있기 때문인데 비활성화 시키면 설치가 정상적으로 이뤄진다

 

 

해결방법

sudo vi /etc/modprobe.d/blacklist.conf

# 아래 내용 입력
blacklist nouveau
options nouveau modeset=0

 

적용하기

sudo update-initramfs -u

 

 

재시작

sudo reboot now

 

비활성화 확인

lsmod | grep nouveau
반응형