Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我使用远程模式登录我的服务器以执行我的 GUI 程序时。我需要设置export LIBGL_ALWAYS_INSIRECT=yes。我怎么能设置一次。每次登录服务器时不要设置它
export LIBGL_ALWAYS_INSIRECT=yes
根据您的方便,将导出命令添加到主目录中的 .bashrc 文件或 rc.local 文件或 /etc/profile 文件中。
导出 LIBGL_ALWAYS_INSIRECT=yes
我不知道您的“GUI 程序”是用什么语言编写的,但您需要在 main 方法的顶部添加与以下 C 咒语等效的内容:
#include <stdlib.h> setenv ("LIBGL_ALWAYS_INSIRECT", "yes", 1); // your code here