如何在没有FBConfig错误的情况下在docker内部运行glut应用程序?

时间:2020-08-08 23:45:20

标签: docker opengl glut

因此,我需要在Ubuntu上开发并运行特定的gui应用程序。应用程序基于OpenGLfreeglut。我想从Macbook进行开发,因此尝试使用 vs代码远程容器功能。效果很好,直到需要运行此应用程序为止。我在容器中安装了许多各种各样的gl包,并用xquarts等运行了它。

现在我遇到了过剩的问题:freeglut (my_app): ERROR: Internal error <FBConfig with necessary capabilities not found> in function fgOpenWindow。正如我发现的there一样,这是一个过剩和远程连接的已知错误。从2009年开始就知道了!那么有谁知道,如何摆脱它?还是我永远不会在docker内部运行我的应用程序?

我当前的Dockerfile:

FROM nvidia/cudagl:9.0-devel-ubuntu16.04

# This Dockerfile's base image has a non-root user with sudo access. Use the "remoteUser"
# property in devcontainer.json to use it. On Linux, the container user's GID/UIDs
# will be updated to match your local UID/GID (when using the dockerFile property).
# See https://aka.ms/vscode-remote/containers/non-root-user for details.
ARG USERNAME=user

ENV DEBIAN_FRONTEND noninteractive

# Adding new architecture in package base
RUN dpkg --add-architecture i386

# Installg tools
RUN apt-get update \
    && apt-get -y install sudo software-properties-common zsh wget

# Installing latest git
RUN add-apt-repository ppa:git-core/ppa \
    && apt-get update \
    && apt-get -y install git

# Install C++ tools
RUN apt-get -y install build-essential gcc-multilib g++-multilib cmake cppcheck valgrind

# Install some dependencies
RUN apt-get -y install libc6-dev-i386 libgl1-mesa-dev libglu1-mesa-dev freeglut3 freeglut3-dev libjpeg-turbo8-dev libpng12-dev mesa-utils

# Install dependencies with another architecture
RUN apt-get -y install libgl1-mesa-dev:i386 libglu1-mesa-dev:i386 freeglut3:i386 freeglut3-dev:i386 libpng12-0:i386

# Install nvidia driver
RUN apt-get install -y binutils xserver-xorg-video-all

# Adding new user
RUN groupadd --gid 2000 $USERNAME \
    && useradd --uid 2000 --gid $USERNAME --shell /bin/zsh --create-home $USERNAME \
    && echo $USERNAME ALL=\(root\) NOPASSWD:ALL > /etc/sudoers.d/$USERNAME

# Clean up
RUN apt-get autoremove -y \
    && apt-get clean -y \
    && rm -rf /var/lib/apt/lists/*

USER $USERNAME

ENV DEBIAN_FRONTEND interactive

1 个答案:

答案 0 :(得分:0)

我不知道如何,但是现在可以了!我已经尝试过使用很多东西,所以我不知道到底什么对我有帮助。所以我会尽力告诉一切:

  1. Docker基础映像变为Ubuntu 14.04。我以前已经尝试过,但是那时没有用。
  2. 我已将XQuartz降级到2.7.8版
  3. 我已将其粘贴到终端机:defaults write org.macosforge.xquartz.X11 enable_iglx -bool true

以防万一,这是我的新Dockerfile:

FROM ubuntu:14.04

# This Dockerfile's base image has a non-root user with sudo access. Use the "remoteUser"
# property in devcontainer.json to use it. On Linux, the container user's GID/UIDs
# will be updated to match your local UID/GID (when using the dockerFile property).
# See https://aka.ms/vscode-remote/containers/non-root-user for details.
ARG USERNAME=user

ENV DEBIAN_FRONTEND noninteractive

# Adding new architecture in package base
RUN dpkg --add-architecture i386

# Install tools
RUN apt-get update \
    && apt-get -y install sudo software-properties-common zsh wget

# Install last git
RUN add-apt-repository ppa:git-core/ppa \
    && apt-get update \
    && apt-get -y install git

# Install C++ tools
RUN apt-get -y install build-essential gcc-multilib g++-multilib cmake cppcheck valgrind

# Install some dependencies
RUN apt-get -y install libc6-dev-i386 libgl1-mesa-dev libglu1-mesa-dev freeglut3 freeglut3-dev libjpeg-turbo8-dev libpng12-dev mesa-utils

# Install dependencies with another architecture
RUN apt-get -y install libgl1-mesa-dev:i386 libglu1-mesa-dev:i386 freeglut3:i386 freeglut3-dev:i386 libpng12-0:i386

# Install nvidia driver
RUN apt-get install -y binutils xserver-xorg-video-all

# Adding new user
RUN groupadd --gid 2000 $USERNAME \
    && useradd --uid 2000 --gid $USERNAME --shell /bin/zsh --create-home $USERNAME \
    && echo $USERNAME ALL=\(root\) NOPASSWD:ALL > /etc/sudoers.d/$USERNAME

# Clean up
RUN apt-get autoremove -y \
    && apt-get clean -y \
    && rm -rf /var/lib/apt/lists/*

USER $USERNAME

ENV DEBIAN_FRONTEND interactive

相关问题