Friday, September 17, 2010

Dual Monitors on Ubuntu (with NVidia cards)

I found an excellent article on setting up Dual Monitors on Ubuntu (for those of you who have NVidia Graphics Cards). Here it is:

http://www.ubuntugeek.com/dual-monitors-with-nvidia.html

I followed the instructions and it worked for me :)

Here is my "xorg.conf" file BEFORE the changes:

01Section "Screen"
02Identifier      "Default Screen"
03DefaultDepth    24
04Option  "AddARGBGLXVisuals"     "True"
05EndSection
06 
07Section "Module"
08Load    "glx"
09EndSection
10 
11Section "Device"
12Identifier      "Default Device"
13Driver  "nvidia"
14Option  "NoLogo"        "True"
15EndSection

... and this is AFTER the changes:

01Section "Screen"
02Identifier      "Default Screen"
03DefaultDepth    24
04Option  "AddARGBGLXVisuals"     "True"
05Option "RenderAccel" "true"
06Option "TwinView"
07Option "MetaModes" "1280x1024 1280x1024"
08EndSection
09 
10Section "Module"
11Load    "glx"
12EndSection
13 
14Section "Device"
15Identifier      "Default Device"
16Driver  "nvidia"
17Option  "NoLogo"        "True"
18EndSection

Looking forward for some increased productivity ;)