040b7bbc90b4e25e2166992628da623bba4b60e8
help.md
... | ... | @@ -12,4 +12,4 @@ We try to accommodate most requests for new software, but we do occasionally run |
12 | 12 | Even when things go smoothly, license requests and working out licensing details with developers can take some time, so please don't wait until the last minute before requesting software you anticipate you may need for your project. |
13 | 13 | |
14 | 14 | ### Newsletter |
15 | -SBGrid sends a monthly newsletter with information concerning software updates, upcoming webinars, talks and other items of interest to our community. The archive of previous newsletters is available online at the [SBGrid Newsletter Archive](http://sbgrid.org/news/newsletters). |
|
15 | +SBGrid sends a monthly newsletter with information concerning software updates, upcoming webinars, talks and other items of interest to our community. The archive of previous newsletters is available online at the [SBGrid Newsletter Archive](https://sbgrid.org/newsletters/). |
stereo.md
... | ... | @@ -2,6 +2,9 @@ |
2 | 2 | |
3 | 3 | ### 3D Stereo on RHEL/CentOS 6 systems |
4 | 4 | |
5 | +Nvidia 3d stereo on RHEL 6 is reasonably straight-forward. |
|
6 | +Take a look [here](xorg_conf.md) for an example xorg.conf file. This configuration if for a Quadro 4000 card and a 1920x1080 display. Your settings may vary depending on your hardware. |
|
7 | + |
|
5 | 8 | ### 3D Stereo on RHEL/CentOS 7 systems with Gnome 3 |
6 | 9 | |
7 | 10 | Nvidia 3D stereo typically requires disabling the Composite extension in X.org. Unfortunately, this extension is required to run Gnome 3 and the gdm login mangager supplied as the default desktop in CentOS and many other linux distributions. |
xorg_conf.md
... | ... | @@ -0,0 +1,77 @@ |
1 | +## Example xorg.conf for Nvidia 3D |
|
2 | + |
|
3 | +### This configuration is for an ASUS VG278HE display and a Nvidia Quadro 4000 |
|
4 | + |
|
5 | +``` |
|
6 | +# SBGrid |
|
7 | +# nvidia version 319.32 |
|
8 | + |
|
9 | +Section "ServerLayout" |
|
10 | + Identifier "Layout0" |
|
11 | + Screen 0 "Screen0" 0 0 |
|
12 | + InputDevice "Keyboard0" "CoreKeyboard" |
|
13 | + InputDevice "Mouse0" "CorePointer" |
|
14 | + Option "Xinerama" "0" |
|
15 | +EndSection |
|
16 | + |
|
17 | +Section "Files" |
|
18 | + ModulePath "/usr/lib64/xorg/modules/extensions/nvidia" |
|
19 | + ModulePath "/usr/lib64/xorg/modules" |
|
20 | + FontPath "/usr/share/fonts/default/Type1" |
|
21 | +EndSection |
|
22 | + |
|
23 | +Section "InputDevice" |
|
24 | + |
|
25 | + # generated from default |
|
26 | + Identifier "Mouse0" |
|
27 | + Driver "mouse" |
|
28 | + Option "Protocol" "auto" |
|
29 | + Option "Device" "/dev/psaux" |
|
30 | + Option "Emulate3Buttons" "no" |
|
31 | + Option "ZAxisMapping" "4 5" |
|
32 | +EndSection |
|
33 | + |
|
34 | +Section "InputDevice" |
|
35 | + |
|
36 | + # generated from data in "/etc/sysconfig/keyboard" |
|
37 | + Identifier "Keyboard0" |
|
38 | + Driver "kbd" |
|
39 | + Option "XkbLayout" "us" |
|
40 | + Option "XkbModel" "pc105" |
|
41 | +EndSection |
|
42 | + |
|
43 | +Section "Monitor" |
|
44 | + Identifier "Monitor0" |
|
45 | + VendorName "Unknown" |
|
46 | + ModelName "Ancor Communications Inc ASUS VG278HE" |
|
47 | + HorizSync 24.0 - 162.0 |
|
48 | + VertRefresh 50.0 - 148.0 |
|
49 | + Option "DPMS" |
|
50 | +EndSection |
|
51 | + |
|
52 | +Section "Device" |
|
53 | + Identifier "Device0" |
|
54 | + Driver "nvidia" |
|
55 | + VendorName "NVIDIA Corporation" |
|
56 | + BoardName "Quadro 4000" |
|
57 | +EndSection |
|
58 | + |
|
59 | +Section "Screen" |
|
60 | + Identifier "Screen0" |
|
61 | + Device "Device0" |
|
62 | + Monitor "Monitor0" |
|
63 | + DefaultDepth 24 |
|
64 | + Option "AllowDFPStereo" "1" |
|
65 | + Option "UBB" "1" |
|
66 | + Option "Stereo" "10" |
|
67 | + Option "metamodes" "DFP-0: nvidia-auto-select +1920+0, DFP-2: nvidia-auto-select +0+0" |
|
68 | + SubSection "Display" |
|
69 | + Depth 24 |
|
70 | + EndSubSection |
|
71 | +EndSection |
|
72 | + |
|
73 | +Section "Extensions" |
|
74 | + Option "Composite" "Disable" |
|
75 | +EndSection |
|
76 | + |
|
77 | +``` |