macos – 从mac上的容器运行GUI解决“libGL错误:找不到匹配的fbConfigs或视觉效果”

前端之家收集整理的这篇文章主要介绍了macos – 从mac上的容器运行GUI解决“libGL错误:找不到匹配的fbConfigs或视觉效果”前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我正在尝试从我的Mac上运行基于ubuntu:15.10的容器.

我运行以下命令

docker run -i -v /tmp/.X11-unix:/tmp/. -e DISPLAY=192.168.0.104:0 --privileged mycompany/mycontainer

(IP取自我的en0:inet使用ifconfig)

我收到以下错误

libGL error: No matching fbConfigs or visuals found
libGL error: Failed to load driver: swrast
X Error of Failed request:  BadValue (integer parameter out of range for operation)
  Major opcode of Failed request:  149 (GLX)
  Minor opcode of Failed request:  24 (X_GLXCreateNewContext)
  Value in Failed request:  0x0
  Serial number of Failed request:  25
  Current serial number in output stream:  26

此容器在另一个团队成员Ubuntu OS上运行,没有任何问题.

是什么原因造成了这个错误

最佳答案
我在MacOS中的docker容器中运行SUMO模拟GUI时遇到同样的问题.

作为临时解决方案或解决方法,对我有用的是将XQuartz版本降级到2.7.8,正如https://bugs.freedesktop.org/show_bug.cgi?id=96433中所建议的那样

我仍然收到错误,但GUI确实有效.

原文链接:https://www.f2er.com/docker/436612.html

猜你在找的Docker相关文章