Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | |||
| 5 | 6 | 7 | 8 | 9 | 10 | 11 |
| 12 | 13 | 14 | 15 | 16 | 17 | 18 |
| 19 | 20 | 21 | 22 | 23 | 24 | 25 |
| 26 | 27 | 28 | 29 | 30 |
Tags
- IOU
- Spring
- 알고리즘
- 백준
- 스프링
- nfs mount
- yolov7
- 리눅스
- 딥러닝
- C
- SQLD
- C++
- docker
- 네트워크
- 도커
- 딥스트림
- nouveau
- tao_toolkit
- Linux
- 타오툴킷
- 비디오미리보기
- deepstream
- Python
- 정처기
- 도커 컨테이너
- mAP@.5
- pyMySQL
- dkms
- 파이썬
- 주피터 노트북
Archives
- Today
- Total
한 번만 더 해보자
[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
반응형
'Linux' 카테고리의 다른 글
| [Linux] ERROR: modpost: GPL-incompatible module nvidia.ko uses GPL-only symbol 'rcu_read_unlock_strict’ (0) | 2024.06.27 |
|---|---|
| [Linux] bash: nvcc: command not found (0) | 2024.06.27 |
| [Linux] Error executing Jupyter command 'notebook': [Errno 20] Not a directory (0) | 2024.05.16 |
| [Linux] /bin/bash: ngc: command not found (0) | 2024.05.09 |
| [docker] 이미지 ↔ tar (0) | 2024.04.11 |