Dual Head Display Dell Inspiron 1525 Ubuntu

One of the few things that Linux hasn't done well is allowing the user to add or change monitors.

dual head screenshot

It looks like this is changing with the new utility xrandr.

I haven't fine tuned this yet (or even tested it much) but I do have a dual head display - with the virtual screen spanning two displays.

I'll come back and document this properly - but for now here's what I did.

First I created this xorg.conf file.

Section "ServerLayout"
        Identifier     "dual head configuration"
        Screen      0  "Screen0" 0 0
        InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "InputDevice"
        Identifier  "Keyboard0"
        Driver      "kbd"
        Option      "XkbModel" "pc105"
        Option      "XkbLayout" "gb"
EndSection

Section "Device"
        Identifier  "Videocard0"
        Driver      "intel"
        Option      "monitor-VGA" "vga"
        Option      "monitor-LVDS" "lvds"
EndSection

Section "Monitor"
        Identifier "lvds"
        Option "Position" "2560 0"
EndSection

Section "Monitor"
        Identifier "vga"
        Option "RightOf" "lvds"
EndSection

Section "Screen"
        Identifier "Screen0"
        Device     "Videocard0"
        DefaultDepth     16
        SubSection "Display"
           Viewport   0 0
           Depth     16
           Modes        "2560x1600"
           Virtual      5120 1600
        EndSubSection
EndSection

Then I restarted my X-windows session and at the console (as a normal user) I ran:

xrandr --output LVDS --mode 1440x900
xrandr --output LVDS --left-of VGA

And now it works :-)

References

Tags

Comments

Sweeet! I have an inspirion

Sweeet!

I have an inspirion and have been trying to do this with ubuntu but was unable to firgure it out. In the official ubuntu forums there's rhumors that it may not be possible at all.... Maybe you should go there and show them how to do it :)

Post new comment

Got something to add - just enter a comment
all other fields are optional.

Your email address will not be published.
  • Web page addresses and e-mail addresses turn into links automatically.
  • Allowed HTML tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd>
  • Lines and paragraphs break automatically.

More information about formatting options

CAPTCHA
This question is for testing whether you are a human visitor and to prevent automated spam submissions.
5 + 13 =
Solve this simple math problem and enter the result. E.g. for 1+3, enter 4.