Visualization: graphics cards and 3D: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 12: | Line 12: | ||
/root/NVIDIA.run --no-network -s -K -n | /root/NVIDIA.run --no-network -s -K -n | ||
fi | fi | ||
If everything is ok with the driver you get the following output from "glxinfo|head": | If everything is ok with the driver you get the following output from "glxinfo|head": | ||
Line 25: | Line 24: | ||
GLX_EXT_texture_from_pixmap, GLX_ARB_multisample, GLX_NV_float_buffer | GLX_EXT_texture_from_pixmap, GLX_ARB_multisample, GLX_NV_float_buffer | ||
client glx vendor string: NVIDIA Corporation | client glx vendor string: NVIDIA Corporation | ||
* [[ATI]] (now belonging to AMD) (proprietary driver download at http://ati.amd.com) | |||
== 3D == | == 3D == | ||
* [[3D visualization]] | * [[3D visualization]] |
Revision as of 00:27, 16 February 2008
graphics cards and drivers
- NVidia (proprietary driver download at http://www.nvidia.com)
The proprietary driver works well but it needs a bit of care. On RedHat systems that are regularly booted, the following lines in /etc/rc.local result in the necessary parts of the driver being re-installed automatically after booting:
if [ ! -h /usr/lib/xorg/modules/extensions/libglx.so ]; then echo "re-installing NVIDIA driver. This takes some time. Ignore any warnings." /root/NVIDIA.run --no-network -s -n fi if [ ! -e /lib/modules/`uname -r`/kernel/drivers/video/nvidia.ko ]; then echo "installing NVIDIA kernel module. This takes some time. Ignore any warnings." /root/NVIDIA.run --no-network -s -K -n fi
If everything is ok with the driver you get the following output from "glxinfo|head":
name of display: :0.0 display: :0 screen: 0 direct rendering: Yes server glx vendor string: NVIDIA Corporation server glx version string: 1.4 server glx extensions: GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_SGIX_fbconfig, GLX_SGIX_pbuffer, GLX_SGI_video_sync, GLX_SGI_swap_control, GLX_EXT_texture_from_pixmap, GLX_ARB_multisample, GLX_NV_float_buffer client glx vendor string: NVIDIA Corporation
- ATI (now belonging to AMD) (proprietary driver download at http://ati.amd.com)