我想在 Ubuntu 12 中安装并测试 3D 加速。
我已阅读过以下页面:
- https://help.ubuntu.com/community/RadeonDriver
- https://wiki.ubuntu.com/X/Troubleshooting/VideoDriverDetection?action=show&redirect=X%2FTroubleshooting%2FFglrxInteferesWithRadeonDriver#Problem:_Need_to_purge_-fglrx
我认为我已经正确安装它,但我不知道如何测试它。
我尝试在浏览器中玩 minecraft,但出现黑屏。这也可能是 Java 的问题,所以我需要排除故障。
那么我该如何测试我的显卡和驱动程序?
答案1
下面的命令至少可以部分回答您的问题。
/usr/lib/nux/unity_support_test -p
该命令测试你的视频适配器是否支持 Unity 3D。虽然它确实不是测试 3D 加速本身,它至少会测试 Unity 3D 所需的 3D 功能。
而且,它是随 Ubuntu 一起提供的,所以您所要做的就是打开一个终端窗口并运行它。;-)
以下是输出的一个示例。
irrational@VBx64:~$ /usr/lib/nux/unity_support_test -p
OpenGL vendor string: Humper
OpenGL renderer string: Chromium
OpenGL version string: 2.1 Chromium 1.9
Not software rendered: yes
Not blacklisted: yes
GLX fbconfig: yes
GLX texture from pixmap: yes
GL npot or rect textures: yes
GL vertex program: yes
GL fragment program: yes
GL vertex buffer object: yes
GL framebuffer object: yes
GL version is 1.4+: yes
Unity 3D supported: yes
答案2
一个简单的测试方法(虽然不是基准测试)是使用 glxgears。
sudo apt-get install mesa-utils
然后在终端类型中:glxgears
它将显示您的每秒帧数(fps)。
更多信息这里。