반응형
Mac에서 XQuartz로 X11에서 아래와 같은 오류가 발생했다.
구글링에서 확인해서 아래와 같이 세단계로 수정하여 정상 동작하는 것을 확인했다.
오류 내용
libGL error: No matching fbConfigs or visuals found
libGL error: failed to load driver: swrast
X Error of failed request: GLXBadContext
Major opcode of failed request: 149 (GLX)
Minor opcode of failed request: 6 (X_GLXIsDirect)
Serial number of failed request: 34
Current serial number in output stream: 33
1. "libGL error: No matching fbConfigs or visuals found" 오류
$ echo "export XDG_RUNTIME_DIR=/tmp/runtime-$USER" >> ~/.bashrc
2. "libGL error: failed to load driver: swrast" 오류
$ echo "export LIBGL_ALWAYS_INDIRECT=1" >> ~/.bashrc
3. "X Error of failed request: GLXBadContext ... " 오류
3.1 defaults read org.xquartz.X11 확인(0으로 되어 있음)
"enable_iglx" = 0;
아래 명령어로 1로 변경해줌
defaults write org.xquartz.X11 enable_iglx -bool true
4. Reload 및 재시작
4.1 Bash Resource File Reload
$ source ~/.bashrc
4.2 XQuartz 종료 및 재시작
반응형
'개발, 웹, 블로그 > Linux 상식' 카테고리의 다른 글
Ubuntu 환경에서 OpenGL설치 (0) | 2023.06.12 |
---|---|
Ubuntu 로그인 창에서 무한 로그인 대처 방법 (0) | 2023.06.05 |
간단 Doxygen cli 명령어 및 option 정리 (0) | 2022.09.15 |