I want to install and test 3d acceleration in Ubuntu 12.
I have read these pages:
- https://help.ubuntu.com/community/RadeonDriver
- https://wiki.ubuntu.com/X/Troubleshooting/VideoDriverDetection?action=show&redirect=X%2FTroubleshooting%2FFglrxInteferesWithRadeonDriver#Problem:_Need_to_purge_-fglrx
I think I have installed it correctly, but I don't know how to test it.
I tried to play minecraft in the browser, but I got a black screen. It may be a java problem too, so I need to troubleshoot.
So how can I test my video card and drivers?
The command below could provide at least a partial answer to your question.
The command tests whether your video adapter will support Unity 3D. While it does not test 3D acceleration per se, it will at least test for the 3D features which Unity 3D requires.
And, what the heck, it comes with Ubuntu so all you have to do is open a terminal window and run it. ;-)
Here is an example of the output.
An easy way to test it (not a benchmark test though) is using glxgears.
sudo apt-get install mesa-utils
then in a terminal type:
glxgears
It will display your frames per second (fps).
More info here.